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 }}