Skip to content

Commit 3326030

Browse files
Update docker/login-action action to v3.6.0 (#8375)
| datasource | package | from | to | | ----------- | ------------------- | ------ | ------ | | github-tags | docker/login-action | v3.5.0 | v3.6.0 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent a44c6c0 commit 3326030

16 files changed

+45
-45
lines changed

.github/workflows/build-base-images.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
7575

7676
- name: Login to GCR
77-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
77+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
7878
with:
7979
registry: gcr.io
8080
username: oauth2accesstoken
@@ -139,7 +139,7 @@ jobs:
139139
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
140140

141141
- name: Login to GCR
142-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
142+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
143143
with:
144144
registry: gcr.io
145145
username: oauth2accesstoken
@@ -202,7 +202,7 @@ jobs:
202202
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
203203

204204
- name: Login to GCR
205-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
205+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
206206
with:
207207
registry: gcr.io
208208
username: oauth2accesstoken

.github/workflows/build-oss.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ jobs:
7171
if: ${{ inputs.authenticated }}
7272

7373
- name: Login to GCR
74-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
74+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
7575
with:
7676
registry: gcr.io
7777
username: oauth2accesstoken
7878
password: ${{ steps.auth.outputs.access_token }}
7979
if: ${{ inputs.authenticated }}
8080

8181
- name: DockerHub Login
82-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
82+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
8383
with:
8484
username: ${{ secrets.DOCKER_USERNAME }}
8585
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/build-plus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ jobs:
7373
if: ${{ inputs.authenticated }}
7474

7575
- name: Login to GCR
76-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
76+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
7777
with:
7878
registry: gcr.io
7979
username: oauth2accesstoken
8080
password: ${{ steps.auth.outputs.access_token }}
8181
if: ${{ inputs.authenticated }}
8282

8383
- name: DockerHub Login
84-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
84+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
8585
with:
8686
username: ${{ secrets.DOCKER_USERNAME }}
8787
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/build-single-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
7474

7575
- name: Login to GCR
76-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
76+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
7777
with:
7878
registry: gcr.io
7979
username: oauth2accesstoken

.github/workflows/build-test-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
4343

4444
- name: Login to GCR
45-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
45+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
4646
with:
4747
registry: gcr.io
4848
username: oauth2accesstoken

.github/workflows/build-ubi-dependency.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
4545

4646
- name: Login to GitHub Container Registry
47-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
47+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
4848
with:
4949
registry: ghcr.io
5050
username: ${{ github.repository_owner }}

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
if: ${{ steps.vars.outputs.forked_workflow == 'false' }}
138138

139139
- name: Login to GCR
140-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
140+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
141141
with:
142142
registry: gcr.io
143143
username: oauth2accesstoken
@@ -368,7 +368,7 @@ jobs:
368368
if: ${{ needs.checks.outputs.forked_workflow == 'false' || needs.checks.outputs.docs_only == 'false' }}
369369

370370
- name: Login to GCR
371-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
371+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
372372
with:
373373
registry: gcr.io
374374
username: oauth2accesstoken
@@ -438,7 +438,7 @@ jobs:
438438
if: ${{ needs.checks.outputs.forked_workflow == 'false' || needs.checks.outputs.docs_only == 'false' }}
439439

440440
- name: Login to GCR
441-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
441+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
442442
with:
443443
registry: gcr.io
444444
username: oauth2accesstoken
@@ -578,7 +578,7 @@ jobs:
578578
if: ${{ needs.checks.outputs.forked_workflow == 'false' && needs.checks.outputs.docs_only == 'false' }}
579579

580580
- name: Login to GCR
581-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
581+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
582582
with:
583583
registry: gcr.io
584584
username: oauth2accesstoken

.github/workflows/image-promotion.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
8282

8383
- name: Login to GCR
84-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
84+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
8585
with:
8686
registry: gcr.io
8787
username: oauth2accesstoken
@@ -327,14 +327,14 @@ jobs:
327327
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
328328

329329
- name: Login to GCR
330-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
330+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
331331
with:
332332
registry: gcr.io
333333
username: oauth2accesstoken
334334
password: ${{ steps.auth.outputs.access_token }}
335335

336336
- name: DockerHub Login for Docker Scout
337-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
337+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
338338
with:
339339
username: ${{ secrets.DOCKER_USERNAME }}
340340
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -407,14 +407,14 @@ jobs:
407407
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
408408

409409
- name: Login to GCR
410-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
410+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
411411
with:
412412
registry: gcr.io
413413
username: oauth2accesstoken
414414
password: ${{ steps.auth.outputs.access_token }}
415415

416416
- name: DockerHub Login for Docker Scout
417-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
417+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
418418
with:
419419
username: ${{ secrets.DOCKER_USERNAME }}
420420
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -494,14 +494,14 @@ jobs:
494494
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
495495

496496
- name: Login to GCR
497-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
497+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
498498
with:
499499
registry: gcr.io
500500
username: oauth2accesstoken
501501
password: ${{ steps.auth.outputs.access_token }}
502502

503503
- name: DockerHub Login for Docker Scout
504-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
504+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
505505
with:
506506
username: ${{ secrets.DOCKER_USERNAME }}
507507
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/oss-release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
9393

9494
- name: Login to GCR
95-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
95+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
9696
with:
9797
registry: gcr.io
9898
username: oauth2accesstoken
@@ -130,7 +130,7 @@ jobs:
130130
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
131131

132132
- name: Login to GCR
133-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
133+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
134134
with:
135135
registry: gcr.io
136136
username: oauth2accesstoken
@@ -143,7 +143,7 @@ jobs:
143143
role-to-assume: ${{ secrets.AWS_ROLE_PUBLIC_ECR }}
144144

145145
- name: Login to Public ECR
146-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
146+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
147147
with:
148148
registry: public.ecr.aws
149149

@@ -179,14 +179,14 @@ jobs:
179179
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
180180

181181
- name: Login to GCR
182-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
182+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
183183
with:
184184
registry: gcr.io
185185
username: oauth2accesstoken
186186
password: ${{ steps.gcr-auth.outputs.access_token }}
187187

188188
- name: DockerHub Login
189-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
189+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
190190
with:
191191
username: ${{ secrets.DOCKER_USERNAME }}
192192
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -223,14 +223,14 @@ jobs:
223223
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
224224

225225
- name: Login to GCR
226-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
226+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
227227
with:
228228
registry: gcr.io
229229
username: oauth2accesstoken
230230
password: ${{ steps.gcr-auth.outputs.access_token }}
231231

232232
- name: Login to Quay.io
233-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
233+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
234234
with:
235235
registry: quay.io
236236
username: ${{ secrets.QUAY_USERNAME }}
@@ -269,14 +269,14 @@ jobs:
269269
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
270270

271271
- name: Login to GCR
272-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
272+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
273273
with:
274274
registry: gcr.io
275275
username: oauth2accesstoken
276276
password: ${{ steps.gcr-auth.outputs.access_token }}
277277

278278
- name: Login to GitHub Container Registry
279-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
279+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
280280
with:
281281
registry: ghcr.io
282282
username: ${{ github.repository_owner }}

.github/workflows/patch-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
service_account: ${{ secrets.GCR_SERVICE_ACCOUNT }}
6464

6565
- name: Login to GCR
66-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
66+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
6767
with:
6868
registry: gcr.io
6969
username: oauth2accesstoken

0 commit comments

Comments
 (0)