From 832d3175aac1f1118be145adf663b9c2eff21938 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 09:53:18 +0200 Subject: [PATCH] build(deps): bump docker/build-push-action from 2 to 3 (#2815) Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2 to 3. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci-main.yml | 2 +- .github/workflows/ci-outpost.yml | 2 +- .github/workflows/release-publish.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index 4059d3bd2..3effc6dc2 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -223,7 +223,7 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Building Docker Image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: push: ${{ steps.ev.outputs.shouldBuild == 'true' }} tags: | diff --git a/.github/workflows/ci-outpost.yml b/.github/workflows/ci-outpost.yml index 917b83086..9e30225f3 100644 --- a/.github/workflows/ci-outpost.yml +++ b/.github/workflows/ci-outpost.yml @@ -79,7 +79,7 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Building Docker Image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: push: ${{ steps.ev.outputs.shouldBuild == 'true' }} tags: | diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index b0cbf70b1..096fa2d38 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -26,7 +26,7 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Building Docker Image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: push: ${{ github.event_name == 'release' }} tags: | @@ -65,7 +65,7 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Building Docker Image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: push: ${{ github.event_name == 'release' }} tags: |