Skip to content

Commit

Permalink
Merge pull request #1614 from criblio/dependabot/github_actions/docke…
Browse files Browse the repository at this point in the history
…r/login-action-3

Bump docker/login-action from 2 to 3
  • Loading branch information
seanvaleo authored Nov 3, 2023
2 parents 41f6264 + 9a95fbe commit 9aa10e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
uses: actions/checkout@v3

- name: Login to Dockerhub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: scopeci
password: ${{ secrets.SCOPECI_TOKEN }}
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
upload-chunk-size: 1000000

- name: Login to Dockerhub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: scopeci
password: ${{ secrets.SCOPECI_TOKEN }}
Expand Down Expand Up @@ -489,14 +489,14 @@ jobs:
# We skip this step if we're not going to push the resulting container image
- name: Login to Container Registry
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Login to Dockerhub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: scopeci
password: ${{ secrets.SCOPECI_TOKEN }}
Expand Down Expand Up @@ -536,14 +536,14 @@ jobs:

- name: Login to Container Registry
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Login to Dockerhub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: scopeci
password: ${{ secrets.SCOPECI_TOKEN }}
Expand Down Expand Up @@ -579,7 +579,7 @@ jobs:
- name: Login to Container Registry
# TODO only if needs.test-*.results == 'success'
if: ${{ needs.info.outputs.push == 'true' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: scopeci
password: ${{ secrets.SCOPECI_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
needs: [info,update-cdn-latest]
steps:
- name: Login to Dockerhub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: scopeci
password: ${{ secrets.SCOPECI_TOKEN }}
Expand Down

0 comments on commit 9aa10e1

Please sign in to comment.