1
mirror of https://github.com/jakejarvis/hugo-docker.git synced 2025-04-26 12:58:28 -04:00

Update docker/login-action action to v3

This commit is contained in:
renovate[bot] 2023-09-12 11:01:13 +00:00
parent 974cf9f787
commit 846307e4c8

View File

@ -37,14 +37,14 @@ jobs:
- name: Login to DockerHub - name: Login to DockerHub
if: ${{ github.ref == 'refs/heads/master' }} if: ${{ github.ref == 'refs/heads/master' }}
uses: docker/login-action@v2 uses: docker/login-action@v3
with: with:
username: jakejarvis username: jakejarvis
password: ${{ secrets.DOCKER_HUB_TOKEN }} password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
if: ${{ github.ref == 'refs/heads/master' }} if: ${{ github.ref == 'refs/heads/master' }}
uses: docker/login-action@v2 uses: docker/login-action@v3
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}