Spaces:
Sleeping
Sleeping
Merge pull request #509 from MilesCranmer/dependabot/github_actions/docker/login-action-3
Browse files
.github/workflows/docker_deploy.yml
CHANGED
|
@@ -24,13 +24,13 @@ jobs:
|
|
| 24 |
- name: Checkout
|
| 25 |
uses: actions/checkout@v4
|
| 26 |
- name: Login to Docker Hub
|
| 27 |
-
uses: docker/login-action@
|
| 28 |
if: github.event_name != 'pull_request'
|
| 29 |
with:
|
| 30 |
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
| 31 |
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
| 32 |
- name: Login to GitHub registry
|
| 33 |
-
uses: docker/login-action@
|
| 34 |
if: github.event_name != 'pull_request'
|
| 35 |
with:
|
| 36 |
registry: ghcr.io
|
|
|
|
| 24 |
- name: Checkout
|
| 25 |
uses: actions/checkout@v4
|
| 26 |
- name: Login to Docker Hub
|
| 27 |
+
uses: docker/login-action@v3
|
| 28 |
if: github.event_name != 'pull_request'
|
| 29 |
with:
|
| 30 |
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
| 31 |
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
| 32 |
- name: Login to GitHub registry
|
| 33 |
+
uses: docker/login-action@v3
|
| 34 |
if: github.event_name != 'pull_request'
|
| 35 |
with:
|
| 36 |
registry: ghcr.io
|