From 854a2fbf120a2bcc14a0a2c0072a033ff90873eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 23:03:40 +0000 Subject: [PATCH] build(deps): bump docker/build-push-action from 3 to 4 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v3...v4) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cut-release.yml | 2 +- .github/workflows/nightly.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cut-release.yml b/.github/workflows/cut-release.yml index 32a3c93b46..e1ebaf0bbb 100644 --- a/.github/workflows/cut-release.yml +++ b/.github/workflows/cut-release.yml @@ -200,7 +200,7 @@ jobs: mkdir "${{ runner.temp }}/build" tar -xz -f ${{steps.download.outputs.download-path}}/clair-${{ needs.config.outputs.version }}.tar.gz --strip-components=1 -C "${{ runner.temp }}/build" - name: Build Container - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: cache-from: type=gha cache-to: type=gha,mode=max diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 0a3bda5e93..c649055556 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -79,7 +79,7 @@ jobs: mkdir "${{ runner.temp }}/build" git archive --add-file=go.mod --add-file=go.sum origin/main | tar -x -C "${{ runner.temp }}/build" - - uses: docker/build-push-action@v3 + - uses: docker/build-push-action@v4 with: build-args: | GO_VERSION=${{ env.GO_VERSION }}