Skip to content

Commit 14d3f2a

Browse files
authored
Merge pull request #35 from devilbox/dependabot/github_actions/docker/login-action-2
Bump docker/login-action from 1 to 2
2 parents fa7bfee + 45e11d7 commit 14d3f2a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/docker-multistage-push-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
# Login
126126
# ------------------------------------------------------------
127127
- name: Login
128-
uses: docker/login-action@v1
128+
uses: docker/login-action@v2
129129
with:
130130
username: ${{ secrets.DOCKERHUB_USERNAME }}
131131
password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/docker-multistage-push-manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
# Login
9595
# ------------------------------------------------------------
9696
- name: "Login"
97-
uses: docker/login-action@v1
97+
uses: docker/login-action@v2
9898
with:
9999
username: ${{ secrets.DOCKERHUB_USERNAME }}
100100
password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/docker-name-version-arch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
# Deploy
171171
# ------------------------------------------------------------
172172
- name: Docker login
173-
uses: docker/login-action@v1
173+
uses: docker/login-action@v2
174174
with:
175175
username: ${{ secrets.dockerhub_username }}
176176
password: ${{ secrets.dockerhub_password }}
@@ -233,7 +233,7 @@ jobs:
233233
# Deploy
234234
# ------------------------------------------------------------
235235
- name: "[DEPLOY] Login"
236-
uses: docker/login-action@v1
236+
uses: docker/login-action@v2
237237
with:
238238
username: ${{ secrets.DOCKERHUB_USERNAME }}
239239
password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/docker-name-version-flavour-arch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
# Deploy
171171
# ------------------------------------------------------------
172172
- name: Docker login
173-
uses: docker/login-action@v1
173+
uses: docker/login-action@v2
174174
with:
175175
username: ${{ secrets.dockerhub_username }}
176176
password: ${{ secrets.dockerhub_password }}
@@ -233,7 +233,7 @@ jobs:
233233
# Deploy
234234
# ------------------------------------------------------------
235235
- name: "[DEPLOY] Login"
236-
uses: docker/login-action@v1
236+
uses: docker/login-action@v2
237237
with:
238238
username: ${{ secrets.DOCKERHUB_USERNAME }}
239239
password: ${{ secrets.DOCKERHUB_PASSWORD }}

0 commit comments

Comments
 (0)