Skip to content

Commit 05f2862

Browse files
authored
Updated elgohr/Publish-Docker-Github-Action to a supported version (v5) (#1)
1 parent ceedb98 commit 05f2862

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

extras/docker-build-action/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}
2626

2727
- name: Build Docker image
28-
uses: elgohr/Publish-Docker-Github-Action@v4
28+
uses: elgohr/Publish-Docker-Github-Action@v5
2929
with:
3030
name: ${{ inputs.DOCKER_IMAGE_NAME }}
3131
workdir: ${{ inputs.DOCKER_WORK_DIRECTORY }}/

extras/docker-build-or-publish-based-on-maven-project-version-action/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151
# Images should only be published if a release is made, otherwise only on pushes with a SNAPSHOT version
5252
- if: github.event_name == 'release' || endsWith(steps.get-project-version.outputs.VERSION, '-SNAPSHOT')
5353
name: Publish Docker image
54-
uses: elgohr/Publish-Docker-Github-Action@v4
54+
uses: elgohr/Publish-Docker-Github-Action@v5
5555
with:
5656
name: ${{ inputs.DOCKER_IMAGE_NAME }}
5757
username: ${{ inputs.DOCKER_REGISTRY_USERNAME }}
@@ -64,7 +64,7 @@ runs:
6464
# Images should only be build if it's not a release, otherwise only on pushes with a non SNAPSHOT version
6565
- if: github.event_name != 'release' && !endsWith(steps.get-project-version.outputs.VERSION, '-SNAPSHOT')
6666
name: Build Docker image
67-
uses: elgohr/Publish-Docker-Github-Action@v4
67+
uses: elgohr/Publish-Docker-Github-Action@v5
6868
with:
6969
name: ${{ inputs.DOCKER_IMAGE_NAME }}
7070
workdir: ${{ inputs.DOCKER_WORK_DIRECTORY }}/

extras/docker-publish-action/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151
# Artifacts should only be published if a release is made, otherwise only on pushes with a SNAPSHOT version
5252
- if: github.event_name == 'release' || (github.event_name == 'push' && endsWith(steps.get-project-version.outputs.VERSION, '-SNAPSHOT'))
5353
name: Publish Docker image
54-
uses: elgohr/Publish-Docker-Github-Action@v4
54+
uses: elgohr/Publish-Docker-Github-Action@v5
5555
with:
5656
name: ${{ inputs.DOCKER_IMAGE_NAME }}
5757
username: ${{ inputs.DOCKER_REGISTRY_USERNAME }}

0 commit comments

Comments
 (0)