Skip to content

Commit 45e11d7

Browse files
Bump docker/login-action from 1 to 2
Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 2. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v1...v2) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a3586f4 commit 45e11d7

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
@@ -129,7 +129,7 @@ jobs:
129129
# Login
130130
# ------------------------------------------------------------
131131
- name: Login
132-
uses: docker/login-action@v1
132+
uses: docker/login-action@v2
133133
with:
134134
username: ${{ secrets.DOCKERHUB_USERNAME }}
135135
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)