From 228a0eab2af66fadfff006a5e693193c59e5fbaf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 22 Oct 2023 18:41:53 +0000 Subject: [PATCH] Bump docker/login-action from 2 to 3 Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/angular.yml | 2 +- .github/workflows/go.yml | 4 ++-- .github/workflows/kotlin.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml index 756e8988..df3c015f 100644 --- a/.github/workflows/angular.yml +++ b/.github/workflows/angular.yml @@ -93,7 +93,7 @@ jobs: if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) # run only on main - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) # run only on main with: username: ${{ secrets.DOCKER_USERNAME }} diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e83eb703..c35cd6a0 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -103,7 +103,7 @@ jobs: if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) # run only on main - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) # run only on main with: username: ${{ secrets.DOCKER_USERNAME }} @@ -115,7 +115,7 @@ jobs: # Practical Example: https://blog.codecentric.de/github-container-registry and # Code: https://github.com/jonashackt/docker-hello-world/blob/main/.github/workflows/publish.yml - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) # run only on main with: registry: ghcr.io diff --git a/.github/workflows/kotlin.yml b/.github/workflows/kotlin.yml index 0789dff7..14795723 100644 --- a/.github/workflows/kotlin.yml +++ b/.github/workflows/kotlin.yml @@ -119,7 +119,7 @@ jobs: if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) # run only on main - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) # run only on main with: username: ${{ secrets.DOCKER_USERNAME }}