Skip to content

Commit 4274838

Browse files
dependabot[bot]chrmarti
authored andcommitted
Bump docker/login-action from 2 to 3
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] <support@github.com>
1 parent 77af3c9 commit 4274838

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/ci_common.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
9393
- name: Login to GitHub Container Registry
9494
if: ${{ steps.set_image_push_option.outputs.image_push_option == 'filter' }}
95-
uses: docker/login-action@v2
95+
uses: docker/login-action@v3
9696
with:
9797
registry: ghcr.io
9898
username: ${{ github.repository_owner }}
@@ -277,7 +277,7 @@ jobs:
277277
echo "VERSION_SHORT: $VERSION_SHORT"
278278
279279
- name: Login to GitHub Container Registry
280-
uses: docker/login-action@v2
280+
uses: docker/login-action@v3
281281
if: github.ref == 'refs/heads/main' # only need this for push (on `main`)
282282
with:
283283
registry: ghcr.io
@@ -375,7 +375,7 @@ jobs:
375375
path: output
376376

377377
- name: Login to GitHub Container Registry
378-
uses: docker/login-action@v2
378+
uses: docker/login-action@v3
379379
if: github.ref == 'refs/heads/main' # only need this for push (on `main`)
380380
with:
381381
registry: ghcr.io
@@ -516,7 +516,7 @@ jobs:
516516

517517
- name: Login to GitHub Container Registry
518518
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
519-
uses: docker/login-action@v2
519+
uses: docker/login-action@v3
520520
with:
521521
registry: ghcr.io
522522
username: ${{ github.repository_owner }}
@@ -561,7 +561,7 @@ jobs:
561561

562562
- name: Login to GitHub Container Registry
563563
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
564-
uses: docker/login-action@v2
564+
uses: docker/login-action@v3
565565
with:
566566
registry: ghcr.io
567567
username: ${{ github.repository_owner }}
@@ -613,7 +613,7 @@ jobs:
613613
uses: docker/setup-buildx-action@v3
614614

615615
- name: Login to GitHub Container Registry
616-
uses: docker/login-action@v2
616+
uses: docker/login-action@v3
617617
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
618618
with:
619619
registry: ghcr.io
@@ -658,7 +658,7 @@ jobs:
658658
uses: docker/setup-buildx-action@v3
659659

660660
- name: Login to GitHub Container Registry
661-
uses: docker/login-action@v2
661+
uses: docker/login-action@v3
662662
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
663663
with:
664664
registry: ghcr.io
@@ -703,7 +703,7 @@ jobs:
703703
uses: docker/setup-buildx-action@v3
704704

705705
- name: Login to GitHub Container Registry
706-
uses: docker/login-action@v2
706+
uses: docker/login-action@v3
707707
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
708708
with:
709709
registry: ghcr.io
@@ -748,7 +748,7 @@ jobs:
748748
uses: docker/setup-buildx-action@v3
749749

750750
- name: Login to GitHub Container Registry
751-
uses: docker/login-action@v2
751+
uses: docker/login-action@v3
752752
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
753753
with:
754754
registry: ghcr.io
@@ -793,7 +793,7 @@ jobs:
793793
uses: docker/setup-buildx-action@v3
794794

795795
- name: Login to GitHub Container Registry
796-
uses: docker/login-action@v2
796+
uses: docker/login-action@v3
797797
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
798798
with:
799799
registry: ghcr.io
@@ -838,7 +838,7 @@ jobs:
838838
uses: docker/setup-buildx-action@v3
839839

840840
- name: Login to GitHub Container Registry
841-
uses: docker/login-action@v2
841+
uses: docker/login-action@v3
842842
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
843843
with:
844844
registry: ghcr.io
@@ -890,7 +890,7 @@ jobs:
890890
uses: docker/setup-buildx-action@v3
891891

892892
- name: Login to GitHub Container Registry
893-
uses: docker/login-action@v2
893+
uses: docker/login-action@v3
894894
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
895895
with:
896896
registry: ghcr.io
@@ -968,7 +968,7 @@ jobs:
968968
run: skopeo --version
969969

970970
- name: Login to GitHub Container Registry
971-
uses: docker/login-action@v2
971+
uses: docker/login-action@v3
972972
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
973973
with:
974974
registry: ghcr.io
@@ -1023,7 +1023,7 @@ jobs:
10231023
ref: ${{ inputs.prRef }}
10241024

10251025
- name: Login to GitHub Container Registry
1026-
uses: docker/login-action@v2
1026+
uses: docker/login-action@v3
10271027
with:
10281028
registry: ghcr.io
10291029
username: ${{ github.repository_owner }}
@@ -1119,7 +1119,7 @@ jobs:
11191119
uses: docker/setup-buildx-action@v3
11201120

11211121
- name: Login to GitHub Container Registry
1122-
uses: docker/login-action@v2
1122+
uses: docker/login-action@v3
11231123
if: ${{ needs.build.outputs.image_push_option == 'filter' }}
11241124
with:
11251125
registry: ghcr.io

0 commit comments

Comments
 (0)