diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8fe25c6..3a3038b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -78,23 +78,6 @@ jobs: target: production tags: movieloop-frontend:ci-${{ github.sha }} load: true - cache-from: type=gha - cache-to: type=gha,mode=max - - image-scan: - runs-on: ubuntu-latest - needs: [build] - steps: - - uses: actions/checkout@v4 - - uses: docker/setup-buildx-action@v3 - - uses: docker/build-push-action@v5 - with: - context: . - file: Dockerfile - target: production - tags: movieloop-frontend:ci-${{ github.sha }} - load: true - cache-from: type=gha - name: Install and run Trivy (image) run: | TRIVY_VERSION=0.70.0 @@ -105,7 +88,7 @@ jobs: push: runs-on: ubuntu-latest - needs: [build, image-scan, secrets-scan, sast, fs-scan] + needs: [build, secrets-scan, sast, fs-scan] if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') steps: - uses: actions/checkout@v4 @@ -132,4 +115,3 @@ jobs: target: production push: true tags: ${{ steps.meta.outputs.tags }} - cache-from: type=gha