From 5597e7ccb94c113cc8344e8289be886049b23f63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Sep 2023 18:56:03 +0000 Subject: [PATCH] build(deps): bump docker/build-push-action from 4 to 5 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 5. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v4...v5) --- 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 4efdc5b3ab..ed8858fe87 100644 --- a/.github/workflows/cut-release.yml +++ b/.github/workflows/cut-release.yml @@ -207,7 +207,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@v4 + uses: docker/build-push-action@v5 with: cache-from: type=gha cache-to: type=gha,mode=max diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 6c4f407f9d..4cb12c38cb 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@v4 + - uses: docker/build-push-action@v5 with: build-args: | GO_VERSION=${{ env.GO_VERSION }}