Skip to content

Commit 5c8314b

Browse files
Bump docker/login-action from 3.5.0 to 3.6.0
Bumps [docker/login-action](https://github.com/docker/login-action) from 3.5.0 to 3.6.0. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3.5.0...v3.6.0) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2b84e11 commit 5c8314b

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)