Update docker/login-action action to v3

This commit is contained in:
renovate[bot]
2023-11-02 00:18:33 +00:00
parent 88543059d4
commit f45b9a9b92

View File

@ -30,13 +30,13 @@ jobs:
- run: poetry run pytest
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}