Skip to content

Commit

Permalink
Update docker github actions (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
kasbah committed Apr 28, 2024
1 parent e9bd510 commit 39adda8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ jobs:

- name: Set up Docker Buildx
if: steps.check_for_image.outputs.image_exists == 'false'
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to ghcr.io
if: steps.check_for_image.outputs.image_exists == 'false'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -118,7 +118,7 @@ jobs:
# to avoid being rate-limited on pulls
- name: Login to hub.docker.com
if: steps.check_for_image.outputs.image_exists == 'false'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PAT }}
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
run: scripts/report_auto_merge_deploy.py '${{ secrets.GITHUB_TOKEN }}' 'pending'

- name: Login to ghcr.io
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down

0 comments on commit 39adda8

Please sign in to comment.