Skip to content

Commit e17fea0

Browse files
workflows: bump docker/login-action from 2 to 3 (#7912)
Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f3ee5ee commit e17fea0

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

.github/workflows/build-legacy-branch.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
uses: docker/setup-buildx-action@v2
6666

6767
- name: Log in to the Container registry
68-
uses: docker/login-action@v2
68+
uses: docker/login-action@v3
6969
with:
7070
registry: ghcr.io
7171
username: ${{ github.actor }}
@@ -130,7 +130,7 @@ jobs:
130130
uses: docker/setup-buildx-action@v2
131131

132132
- name: Log in to the Container registry
133-
uses: docker/login-action@v2
133+
uses: docker/login-action@v3
134134
with:
135135
registry: ghcr.io
136136
username: ${{ github.actor }}

.github/workflows/call-build-images.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
uses: docker/setup-buildx-action@v2
9797

9898
- name: Log in to the Container registry
99-
uses: docker/login-action@v2
99+
uses: docker/login-action@v3
100100
with:
101101
registry: ${{ inputs.registry }}
102102
username: ${{ inputs.username }}
@@ -168,7 +168,7 @@ jobs:
168168
packages: read
169169
steps:
170170
- name: Log in to the Container registry
171-
uses: docker/login-action@v2
171+
uses: docker/login-action@v3
172172
with:
173173
registry: ${{ inputs.registry }}
174174
username: ${{ inputs.username }}
@@ -199,7 +199,7 @@ jobs:
199199
packages: read
200200
steps:
201201
- name: Log in to the Container registry
202-
uses: docker/login-action@v2
202+
uses: docker/login-action@v3
203203
with:
204204
registry: ${{ inputs.registry }}
205205
username: ${{ inputs.username }}
@@ -302,7 +302,7 @@ jobs:
302302
ref: ${{ inputs.ref }}
303303

304304
- name: Log in to the Container registry
305-
uses: docker/login-action@v2
305+
uses: docker/login-action@v3
306306
with:
307307
registry: ${{ inputs.registry }}
308308
username: ${{ inputs.username }}

.github/workflows/call-integration-image-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: docker/setup-buildx-action@v2
4848

4949
- name: Log in to the Container registry
50-
uses: docker/login-action@v2
50+
uses: docker/login-action@v3
5151
with:
5252
registry: ${{ inputs.registry }}
5353
username: ${{ inputs.username }}
@@ -125,7 +125,7 @@ jobs:
125125
ref: ${{ inputs.ref }}
126126

127127
- name: Log in to the Container registry
128-
uses: docker/login-action@v2
128+
uses: docker/login-action@v3
129129
with:
130130
registry: ${{ inputs.registry }}
131131
username: ${{ inputs.username }}

.github/workflows/call-test-images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: sigstore/cosign-installer@v2
4646

4747
- name: Log in to the Container registry
48-
uses: docker/login-action@v2
48+
uses: docker/login-action@v3
4949
with:
5050
registry: ${{ inputs.registry }}
5151
username: ${{ inputs.username }}
@@ -87,7 +87,7 @@ jobs:
8787
expected: arm
8888
steps:
8989
- name: Log in to the Container registry
90-
uses: docker/login-action@v2
90+
uses: docker/login-action@v3
9191
with:
9292
registry: ${{ inputs.registry }}
9393
username: ${{ inputs.username }}
@@ -136,7 +136,7 @@ jobs:
136136
ref: ${{ inputs.ref }}
137137

138138
- name: Log in to the Container registry
139-
uses: docker/login-action@v2
139+
uses: docker/login-action@v3
140140
with:
141141
registry: ${{ inputs.registry }}
142142
username: ${{ inputs.username }}

.github/workflows/cron-trivy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
local_tag: arm32
3838
steps:
3939
- name: Log in to the Container registry
40-
uses: docker/login-action@v2
40+
uses: docker/login-action@v3
4141
with:
4242
username: ${{ secrets.DOCKERHUB_USERNAME }}
4343
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/cron-unstable-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
shell: bash
174174

175175
- name: Log in to the Container registry
176-
uses: docker/login-action@v2
176+
uses: docker/login-action@v3
177177
with:
178178
registry: ghcr.io
179179
username: ${{ github.actor }}

.github/workflows/staging-release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -502,13 +502,13 @@ jobs:
502502
steps:
503503

504504
- name: Login to Docker Hub
505-
uses: docker/login-action@v2
505+
uses: docker/login-action@v3
506506
with:
507507
username: ${{ secrets.DOCKERHUB_USERNAME }}
508508
password: ${{ secrets.DOCKERHUB_TOKEN }}
509509

510510
- name: Login to GitHub Container Registry
511-
uses: docker/login-action@v2
511+
uses: docker/login-action@v3
512512
with:
513513
registry: ghcr.io
514514
username: ${{ github.actor }}
@@ -623,7 +623,7 @@ jobs:
623623
]
624624
steps:
625625
- name: Login to GitHub Container Registry
626-
uses: docker/login-action@v2
626+
uses: docker/login-action@v3
627627
with:
628628
registry: ghcr.io
629629
username: ${{ github.actor }}
@@ -647,7 +647,7 @@ jobs:
647647
shell: bash
648648

649649
- name: Login to Docker Hub
650-
uses: docker/login-action@v2
650+
uses: docker/login-action@v3
651651
with:
652652
username: ${{ secrets.DOCKERHUB_USERNAME }}
653653
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -677,13 +677,13 @@ jobs:
677677
uses: sigstore/cosign-installer@v2
678678

679679
- name: Login to Docker Hub
680-
uses: docker/login-action@v2
680+
uses: docker/login-action@v3
681681
with:
682682
username: ${{ secrets.DOCKERHUB_USERNAME }}
683683
password: ${{ secrets.DOCKERHUB_TOKEN }}
684684

685685
- name: Login to GitHub Container Registry
686-
uses: docker/login-action@v2
686+
uses: docker/login-action@v3
687687
with:
688688
registry: ghcr.io
689689
username: ${{ github.actor }}

0 commit comments

Comments
 (0)