Skip to content

Commit 9c32aa8

Browse files
committed
(build) updated docker/login-action
1 parent 6c99271 commit 9c32aa8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/docker-manifests/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
steps:
2626
-
2727
name: Login to DockerHub
28-
uses: docker/login-action@v2
28+
uses: docker/login-action@v3
2929
with:
3030
username: ${{ inputs.docker_registry_username }}
3131
password: ${{ inputs.docker_registry_password }}
@@ -35,7 +35,7 @@ runs:
3535
run: dotnet run/docker.dll --target=DockerManifest --arch=amd64 --arch=arm64 --docker_dotnetversion=${{ inputs.targetFramework }} --docker_distro=${{ inputs.distro }} --docker_registry dockerhub
3636
-
3737
name: Login to GitHub
38-
uses: docker/login-action@v2
38+
uses: docker/login-action@v3
3939
with:
4040
registry: ghcr.io
4141
username: ${{ inputs.github_registry_username }}

.github/actions/docker-publish/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
steps:
2929
-
3030
name: Login to DockerHub
31-
uses: docker/login-action@v2
31+
uses: docker/login-action@v3
3232
with:
3333
username: ${{ inputs.docker_registry_username }}
3434
password: ${{ inputs.docker_registry_password }}
@@ -38,7 +38,7 @@ runs:
3838
run: dotnet run/docker.dll --target=DockerPublish --arch=${{ inputs.arch }} --docker_dotnetversion=${{ inputs.targetFramework }} --docker_distro=${{ inputs.distro }} --docker_registry dockerhub --verbosity=diagnostic
3939
-
4040
name: Login to GitHub
41-
uses: docker/login-action@v2
41+
uses: docker/login-action@v3
4242
with:
4343
registry: ghcr.io
4444
username: ${{ inputs.github_registry_username }}

0 commit comments

Comments
 (0)