Skip to content

Commit ab763aa

Browse files
chore(ci)(deps): bump docker/login-action from 3 to 4
Bumps [docker/login-action](https://github.com/docker/login-action) from 3 to 4. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...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>
1 parent 8afe600 commit ab763aa

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ jobs:
352352

353353
- name: Log in to Container Registry
354354
if: github.event_name != 'pull_request'
355-
uses: docker/login-action@v3
355+
uses: docker/login-action@v4
356356
with:
357357
registry: ${{ env.REGISTRY }}
358358
username: ${{ github.actor }}

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ jobs:
326326
uses: docker/setup-buildx-action@v3
327327

328328
- name: Log in to Container Registry
329-
uses: docker/login-action@v3
329+
uses: docker/login-action@v4
330330
with:
331331
registry: ${{ env.REGISTRY }}
332332
username: ${{ github.actor }}

.github/workflows/docker-multiarch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
113113
- name: Log in to GitHub Container Registry
114114
if: inputs.push
115-
uses: docker/login-action@v3
115+
uses: docker/login-action@v4
116116
with:
117117
registry: ${{ env.REGISTRY }}
118118
username: ${{ github.actor }}
@@ -158,7 +158,7 @@ jobs:
158158
159159
- name: Log in to Docker Hub
160160
if: inputs.push && steps.dockerhub-check.outputs.enabled == 'true'
161-
uses: docker/login-action@v3
161+
uses: docker/login-action@v4
162162
with:
163163
username: ${{ env.DOCKERHUB_USERNAME || inputs.dockerhub-username }}
164164
password: ${{ env.DOCKERHUB_TOKEN || secrets.DOCKERHUB_TOKEN }}
@@ -256,7 +256,7 @@ jobs:
256256
uses: docker/setup-buildx-action@v3
257257

258258
- name: Log in to GitHub Container Registry
259-
uses: docker/login-action@v3
259+
uses: docker/login-action@v4
260260
with:
261261
registry: ${{ env.REGISTRY }}
262262
username: ${{ github.actor }}
@@ -284,7 +284,7 @@ jobs:
284284
285285
- name: Log in to Docker Hub
286286
if: steps.dockerhub-creds.outputs.has_dockerhub == 'true'
287-
uses: docker/login-action@v3
287+
uses: docker/login-action@v4
288288
with:
289289
username: ${{ env.DOCKERHUB_USERNAME }}
290290
password: ${{ env.DOCKERHUB_TOKEN }}

0 commit comments

Comments
 (0)