summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-09-13 01:42:51 +0000
committerGitHub <noreply@github.com>2023-09-13 01:42:51 +0000
commitc5dbb98866f2b9ebe5d38cb7a554c34403044b46 (patch)
tree9dab2ca57bd332fb037d620c711eb940ad3be317
parent4d9119760056492eabc201bfad5de2f9e660b85f (diff)
Bump docker/build-push-action from 4 to 5dependabot/github_actions/docker/build-push-action-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] <support@github.com>
-rw-r--r--.github/workflows/publish-docker.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml
index 64bf24b..0fe507f 100644
--- a/.github/workflows/publish-docker.yml
+++ b/.github/workflows/publish-docker.yml
@@ -59,7 +59,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build docker image
- uses: docker/build-push-action@v4
+ uses: docker/build-push-action@v5
with:
build-args: GITLINT_VERSION=${{ inputs.gitlint_version }}
tags: jorisroovers/gitlint:${{ steps.set_tag.outputs.docker_image_tag }}
@@ -72,7 +72,7 @@ jobs:
# This won't actually rebuild the docker image, but just push the previously built and cached image
- name: Push docker image
- uses: docker/build-push-action@v4
+ uses: docker/build-push-action@v5
with:
push: ${{ inputs.push_to_dockerhub }}
build-args: GITLINT_VERSION=${{ inputs.gitlint_version }}