Skip to content

Commit

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

---
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>
  • Loading branch information
dependabot[bot] committed Jul 12, 2022
1 parent 594c2f2 commit 1bfface
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ jobs:
metadata_tags: ${{ env.metadata_tags }}

- name: Log in to ghcr.io
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Log into DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v2
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
if: ${{ env.DOCKER_USERNAME != '' }}
Expand All @@ -84,7 +84,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Log into quay.io
uses: docker/login-action@v1
uses: docker/login-action@v2
env:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
if: ${{ env.QUAY_USERNAME != '' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
metadata_tags: ${{ env.metadata_tags }}

- name: Log in to ghcr.io
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Log into DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v2
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
if: ${{ env.DOCKER_USERNAME != '' }}
Expand All @@ -51,7 +51,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Log into quay.io
uses: docker/login-action@v1
uses: docker/login-action@v2
env:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
if: ${{ env.QUAY_USERNAME != '' }}
Expand Down

0 comments on commit 1bfface

Please sign in to comment.