Skip to content

Commit 5d4fcd7

Browse files
Bump docker/login-action from 3 to 4 (#30)
1 parent 5127d80 commit 5d4fcd7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ jobs:
9797

9898
- name: Login to Docker Hub
9999
if: steps.get_version.outputs.PUSH_DOCKER == 'true' && github.event_name != 'pull_request'
100-
uses: docker/login-action@v3
100+
uses: docker/login-action@v4
101101
with:
102102
username: ${{ secrets.DOCKER_USERNAME }}
103103
password: ${{ secrets.DOCKER_PASSWORD }}
104104

105105
- name: Login to GitHub Container Registry
106106
if: steps.get_version.outputs.PUSH_DOCKER == 'true' && github.event_name != 'pull_request'
107-
uses: docker/login-action@v3
107+
uses: docker/login-action@v4
108108
with:
109109
registry: ghcr.io
110110
username: ${{ github.actor }}

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ jobs:
8585

8686
- name: Login to Docker Hub
8787
if: steps.get_version.outputs.PUSH_DOCKER == 'true' && github.event_name != 'pull_request'
88-
uses: docker/login-action@v3
88+
uses: docker/login-action@v4
8989
with:
9090
username: ${{ secrets.DOCKER_USERNAME }}
9191
password: ${{ secrets.DOCKER_PASSWORD }}
9292

9393
- name: Login to GitHub Container Registry
9494
if: steps.get_version.outputs.PUSH_DOCKER == 'true' && github.event_name != 'pull_request'
95-
uses: docker/login-action@v3
95+
uses: docker/login-action@v4
9696
with:
9797
registry: ghcr.io
9898
username: ${{ github.actor }}

0 commit comments

Comments
 (0)