Skip to content

Commit 4aad1c1

Browse files
authored
Merge pull request #42 from gioxx/dependabot/github_actions/docker/login-action-3.6.0
Bump docker/login-action from 3.5.0 to 3.6.0
2 parents 2b84e11 + 5c8314b commit 4aad1c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/dev_dockerbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: echo ${{ steps.buildx.outputs.platforms }}
2828

2929
- name: Login to DockerHub
30-
uses: docker/login-action@v3.5.0
30+
uses: docker/login-action@v3.6.0
3131
with:
3232
username: ${{ secrets.DOCKERHUB_USERNAME }}
3333
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/dockerbuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ jobs:
4444

4545
- name: Login to DockerHub
4646
if: github.ref != 'refs/heads/main' # Only on tag, not regular push
47-
uses: docker/login-action@v3.5.0
47+
uses: docker/login-action@v3.6.0
4848
with:
4949
username: ${{ secrets.DOCKERHUB_USERNAME }}
5050
password: ${{ secrets.DOCKERHUB_TOKEN }}
5151

5252
- name: Login to GHCR
5353
if: github.ref != 'refs/heads/main' # Solo sui tag
54-
uses: docker/login-action@v3.5.0
54+
uses: docker/login-action@v3.6.0
5555
with:
5656
registry: ghcr.io
5757
username: ${{ github.actor }}

0 commit comments

Comments
 (0)