Skip to content

Commit bc24f7a

Browse files
authored
Merge pull request #436 from solidnerd/renovate/docker-login-action-3.x
Update docker/login-action action to v3
2 parents adfe482 + 8b2011e commit bc24f7a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/master.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ jobs:
9999

100100
- name: Login to DockerHub
101101
if: github.event_name != 'pull_request'
102-
uses: docker/login-action@v2
102+
uses: docker/login-action@v3
103103
with:
104104
username: ${{ secrets.DOCKER_USERNAME }}
105105
password: ${{ secrets.DOCKER_PASSWORD }}
106106

107107
- name: Login to GitHub Container Registry
108-
uses: docker/login-action@v2
108+
uses: docker/login-action@v3
109109
with:
110110
registry: ghcr.io
111111
username: ${{ github.repository_owner }}

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ jobs:
105105

106106
- name: Login to DockerHub
107107
if: github.event_name != 'pull_request'
108-
uses: docker/login-action@v2
108+
uses: docker/login-action@v3
109109
with:
110110
username: ${{ secrets.DOCKER_USERNAME }}
111111
password: ${{ secrets.DOCKER_PASSWORD }}
112112

113113
- name: Login to GitHub Container Registry
114-
uses: docker/login-action@v2
114+
uses: docker/login-action@v3
115115
with:
116116
registry: ghcr.io
117117
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)