Skip to content

Commit 44cf163

Browse files
Bump docker/login-action from 2 to 4 (#82)
Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 4. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v2...v4) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2f22852 commit 44cf163

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/docker-multistage-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
make tag VERSION="${{ matrix.VERSION }}" STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} TAG=${{ steps.tag.outputs.docker-tag }}
171171
172172
- name: Docker login
173-
uses: docker/login-action@v2
173+
uses: docker/login-action@v4
174174
with:
175175
username: ${{ secrets.dockerhub_username }}
176176
password: ${{ secrets.dockerhub_password }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
# Login
125125
# ------------------------------------------------------------
126126
- name: Login
127-
uses: docker/login-action@v2
127+
uses: docker/login-action@v4
128128
with:
129129
username: ${{ secrets.DOCKERHUB_USERNAME }}
130130
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
@@ -96,7 +96,7 @@ jobs:
9696
# Login
9797
# ------------------------------------------------------------
9898
- name: "Login"
99-
uses: docker/login-action@v2
99+
uses: docker/login-action@v4
100100
with:
101101
username: ${{ secrets.DOCKERHUB_USERNAME }}
102102
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
@@ -185,7 +185,7 @@ jobs:
185185
# Deploy
186186
# ------------------------------------------------------------
187187
- name: Docker login
188-
uses: docker/login-action@v2
188+
uses: docker/login-action@v4
189189
with:
190190
username: ${{ secrets.dockerhub_username }}
191191
password: ${{ secrets.dockerhub_password }}
@@ -248,7 +248,7 @@ jobs:
248248
# Deploy
249249
# ------------------------------------------------------------
250250
- name: "[DEPLOY] Login"
251-
uses: docker/login-action@v2
251+
uses: docker/login-action@v4
252252
with:
253253
username: ${{ secrets.DOCKERHUB_USERNAME }}
254254
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
@@ -185,7 +185,7 @@ jobs:
185185
# Deploy
186186
# ------------------------------------------------------------
187187
- name: Docker login
188-
uses: docker/login-action@v2
188+
uses: docker/login-action@v4
189189
with:
190190
username: ${{ secrets.dockerhub_username }}
191191
password: ${{ secrets.dockerhub_password }}
@@ -248,7 +248,7 @@ jobs:
248248
# Deploy
249249
# ------------------------------------------------------------
250250
- name: "[DEPLOY] Login"
251-
uses: docker/login-action@v2
251+
uses: docker/login-action@v4
252252
with:
253253
username: ${{ secrets.DOCKERHUB_USERNAME }}
254254
password: ${{ secrets.DOCKERHUB_PASSWORD }}

0 commit comments

Comments
 (0)