Skip to content

Commit 71360c3

Browse files
authored
Merge pull request #131 from essentialkaos/dependabot/github_actions/develop/docker/login-action-3
Bump docker/login-action from 2 to 3
2 parents 16f6f13 + 77eea62 commit 71360c3

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
uses: actions/checkout@v4
8383

8484
- name: Login to GitHub Container Registry
85-
uses: docker/login-action@v2
85+
uses: docker/login-action@v3
8686
with:
8787
registry: ghcr.io
8888
username: ${{ github.actor }}
@@ -150,7 +150,7 @@ jobs:
150150
if: ${{ github.event_name == 'pull_request' }}
151151

152152
- name: Login to DockerHub
153-
uses: docker/login-action@v2
153+
uses: docker/login-action@v3
154154
env:
155155
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
156156
if: ${{ github.event_name == 'pull_request' && env.DOCKERHUB_USERNAME != '' }}
@@ -159,7 +159,7 @@ jobs:
159159
password: ${{ secrets.DOCKERHUB_TOKEN }}
160160

161161
- name: Login to GitHub Container Registry
162-
uses: docker/login-action@v2
162+
uses: docker/login-action@v3
163163
if: ${{ github.event_name == 'pull_request' }}
164164
with:
165165
registry: ghcr.io

.github/workflows/docker-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
fetch-depth: 0
3636

3737
- name: Login to DockerHub
38-
uses: docker/login-action@v2
38+
uses: docker/login-action@v3
3939
with:
4040
username: ${{ secrets.DOCKERHUB_USERNAME }}
4141
password: ${{ secrets.DOCKERHUB_TOKEN }}
4242

4343
- name: Login to GitHub Container Registry
44-
uses: docker/login-action@v2
44+
uses: docker/login-action@v3
4545
with:
4646
registry: ghcr.io
4747
username: ${{ github.actor }}

0 commit comments

Comments
 (0)