diff options
author | Valery Piashchynski <[email protected]> | 2023-09-13 10:08:59 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-09-13 10:08:59 +0200 |
commit | c21efd78736bc02989f8b4ba788e8bee37dd5f10 (patch) | |
tree | 8f5bc44d38cc62b34d795101b7db5ee49beb438b | |
parent | 5eeecf187317ca2a89e8ac4042568e0278ff20bf (diff) | |
parent | 525804a64a3974fb4e2d94cab1e11bdeb478f115 (diff) |
Merge pull request #1722 from roadrunner-server/dependabot/github_actions/docker/login-action-3
build(deps): bump docker/login-action from 2 to 3
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b9acf594..896764d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -159,13 +159,13 @@ jobs: uses: docker/setup-buildx-action@v2 # Action page: <https://github.com/docker/setup-buildx-action> - name: Login to Docker Hub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_LOGIN }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ secrets.GHCR_LOGIN }} |