From 177f18885028086fa6724e3a393a3707cc1ef66f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 20:50:42 +0000 Subject: [PATCH] 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/angular.yml | 2 +- .github/workflows/go.yml | 4 ++-- .github/workflows/kotlin.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml index 931f24a2..7db489a4 100644 --- a/.github/workflows/angular.yml +++ b/.github/workflows/angular.yml @@ -98,7 +98,7 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} # Password or personal access token used to log in to a Docker registry. If not set then no login will occur. - name: Push to DockerHub - uses: docker/build-push-action@v4 # https://github.com/docker/build-push-action + uses: docker/build-push-action@v5 # https://github.com/docker/build-push-action if: github.ref == 'refs/heads/main' # this is how to skip only specific steps if not main with: context: ./angular diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index ce1eaa8f..7d92330b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -120,7 +120,7 @@ jobs: # check https://stackoverflow.com/a/71438011/4292075 - name: Push to GitHub Container Registry - uses: docker/build-push-action@v4 # https://github.com/docker/build-push-action + uses: docker/build-push-action@v5 # https://github.com/docker/build-push-action with: context: ./go file: ./go/Dockerfile @@ -138,7 +138,7 @@ jobs: RELEASE_VERSION: ${{ env.RELEASE_VERSION }} - name: Push to DockerHub - uses: docker/build-push-action@v4 # https://github.com/docker/build-push-action + uses: docker/build-push-action@v5 # https://github.com/docker/build-push-action with: context: ./go file: ./go/Dockerfile diff --git a/.github/workflows/kotlin.yml b/.github/workflows/kotlin.yml index 20acd8aa..d36ce2a2 100644 --- a/.github/workflows/kotlin.yml +++ b/.github/workflows/kotlin.yml @@ -128,7 +128,7 @@ jobs: # GitHub Action to build and push Docker images including multistage builds - name: Push to DockerHub - uses: docker/build-push-action@v4 # https://github.com/docker/build-push-action + uses: docker/build-push-action@v5 # https://github.com/docker/build-push-action if: github.ref == 'refs/heads/main' # this is how to skip only specific steps if not main with: context: ./kotlin