Skip to content

Commit 3d0853d

Browse files
authored
Workflow docker login action upgrade (#4101)
* updated docker login workflow action to avoid deprecation warnings https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent ed1b7cb commit 3d0853d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docker-flowable-base-image-java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: Log into dockerhub
17-
uses: docker/login-action@v1
17+
uses: docker/login-action@v3
1818
with:
1919
username: ${{ secrets.DOCKER_USER }}
2020
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/docker-release-with-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "${{ secrets.SIGNING_SECRET }}" > cosign.key
3737

3838
- name: Log into dockerhub
39-
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
39+
uses: docker/login-action@v3
4040
with:
4141
username: ${{ secrets.DOCKER_USER }}
4242
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/docker-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "${{ secrets.SIGNING_SECRET }}" > cosign.key
3737

3838
- name: Log into dockerhub
39-
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
39+
uses: docker/login-action@v3
4040
with:
4141
username: ${{ secrets.DOCKER_USER }}
4242
password: ${{ secrets.DOCKER_PASSWORD }}

0 commit comments

Comments
 (0)