Skip to content

Commit

Permalink
(build) updated docker/login-action
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Feb 8, 2024
1 parent 6c99271 commit 9c32aa8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/docker-manifests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
steps:
-
name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ inputs.docker_registry_username }}
password: ${{ inputs.docker_registry_password }}
Expand All @@ -35,7 +35,7 @@ runs:
run: dotnet run/docker.dll --target=DockerManifest --arch=amd64 --arch=arm64 --docker_dotnetversion=${{ inputs.targetFramework }} --docker_distro=${{ inputs.distro }} --docker_registry dockerhub
-
name: Login to GitHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ inputs.github_registry_username }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/docker-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
steps:
-
name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ inputs.docker_registry_username }}
password: ${{ inputs.docker_registry_password }}
Expand All @@ -38,7 +38,7 @@ runs:
run: dotnet run/docker.dll --target=DockerPublish --arch=${{ inputs.arch }} --docker_dotnetversion=${{ inputs.targetFramework }} --docker_distro=${{ inputs.distro }} --docker_registry dockerhub --verbosity=diagnostic
-
name: Login to GitHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ inputs.github_registry_username }}
Expand Down

0 comments on commit 9c32aa8

Please sign in to comment.