Skip to content

Commit

Permalink
build(deps): Bump docker/login-action from 2 to 3 (#824)
Browse files Browse the repository at this point in the history
Reviewed-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Approved-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
  • Loading branch information
craciunoiuc committed Sep 18, 2023
2 parents f3b42b3 + 3a40ff7 commit d687af4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Login to OCI registry
if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: index.unikraft.io
username: ${{ secrets.REG_USERNAME }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Login to OCI registry
if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: index.unikraft.io
username: ${{ secrets.REG_USERNAME }}
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: Login to OCI registry
uses: docker/login-action@v2
uses: docker/login-action@v3
if: ${{ github.event_name == 'push' }}
with:
registry: index.unikraft.io
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerfile-llb-frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Login to Registry
if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: index.unikraft.io
username: ${{ secrets.REG_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
for I in /tmp/*.tar; do docker load --input "${I}"; done
- name: Login to Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
if: ${{ github.event_name == 'push' }}
with:
registry: index.unikraft.io
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/myself-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Login to Registry
if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: index.unikraft.io
username: ${{ secrets.REG_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/myself.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Login to Registry
if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: index.unikraft.io
username: ${{ secrets.REG_USERNAME }}
Expand Down

0 comments on commit d687af4

Please sign in to comment.