Skip to content

Commit

Permalink
Bump docker/login-action from 1.14.1 to 2.0.0 (#608)
Browse files Browse the repository at this point in the history
Bumps [docker/login-action](https://github.com/docker/login-action) from 1.14.1 to 2.0.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@v1.14.1...v2.0.0)

---
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>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tomasz Osiński <tomasz@opennetworking.org>
  • Loading branch information
dependabot[bot] and Tomasz Osiński committed May 10, 2022
1 parent aa7f97f commit ce9acfa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
# Checkout and build
- uses: actions/checkout@v3
- uses: docker/login-action@v1.14.1
- uses: docker/login-action@v2.0.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -39,7 +39,7 @@ jobs:
- run: echo GIT_SHA_SHORT=$(git rev-parse --short HEAD) >> $GITHUB_ENV

- id: docker-login
uses: docker/login-action@v1.14.1
uses: docker/login-action@v2.0.0
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_LOGIN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Build UPF with new base
run: |
make docker-build
- uses: docker/login-action@v1.14.1
- uses: docker/login-action@v2.0.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- id: docker-login
# Secrets from the main repo are not used if PR comes from fork. We skip pushing Docker image then.
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
uses: docker/login-action@v1.14.1
uses: docker/login-action@v2.0.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down

0 comments on commit ce9acfa

Please sign in to comment.