diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8c8745f..b68724b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,7 @@ env: DOCKERHUB_SLUG: crazymax/ftpgrab GHCR_SLUG: ghcr.io/crazy-max/ftpgrab DESTDIR: ./bin + DOCKER_BUILD_SUMMARY: false jobs: prepare: @@ -119,8 +120,6 @@ jobs: pull: true set: | *.platform=${{ matrix.platform }} - *.cache-from=type=gha,scope=artifact-${{ env.PLATFORM_PAIR }} - *.cache-to=type=gha,scope=artifact-${{ env.PLATFORM_PAIR }},mode=max - name: Rename provenance and sbom working-directory: ${{ env.DESTDIR }}/artifact @@ -193,17 +192,6 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - - name: Prepare - run: | - cfroms= - while read -r platform; do - if [ -n "$cfroms" ]; then cfroms="${cfroms}\n"; fi - cfroms="${cfroms}*.cache-from=type=gha,scope=artifact-${platform//\//-}" - done < <(docker buildx bake artifact-all --print | jq -r '.target."artifact-all".platforms[]') - echo "CACHE_FROMS<> $GITHUB_ENV - echo -e "$cfroms" >> $GITHUB_ENV - echo "EOF" >> $GITHUB_ENV - name: Docker meta id: meta @@ -255,8 +243,6 @@ jobs: sbom: true pull: true push: ${{ github.event_name != 'pull_request' }} - set: | - ${{ env.CACHE_FROMS }} - name: Check manifest if: github.event_name != 'pull_request' diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5601100..6ad8b0b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,6 +13,7 @@ on: env: DESTDIR: ./bin + DOCKER_BUILD_SUMMARY: false jobs: publish: @@ -30,6 +31,7 @@ jobs: name: Build docs uses: docker/bake-action@v5 with: + provenance: false targets: docs - name: Check GitHub Pages status diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index ad2e0ce..bf252a9 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -20,6 +20,7 @@ env: CONTAINER_NAME: 'ftpgrab' RUNNING_TIMEOUT: '240' RUNNING_LOG_CHECK: 'Finished' + DOCKER_BUILD_SUMMARY: false jobs: e2e: @@ -32,6 +33,7 @@ jobs: name: Build uses: docker/bake-action@v5 with: + provenance: false targets: image-local pull: true -