Skip to content

Commit cfaf348

Browse files
Bump docker/login-action from 3 to 4
Bumps [docker/login-action](https://github.com/docker/login-action) from 3 to 4. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 69f4609 commit cfaf348

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ jobs:
7070

7171
- name: Login to GitHub Container Registry
7272
if: env.PUSH_PACKAGES == 'true'
73-
uses: docker/login-action@v3
73+
uses: docker/login-action@v4
7474
with:
7575
registry: ghcr.io
7676
username: ${{ github.repository_owner }}
7777
password: ${{ secrets.GHCR_TOKEN }}
7878
- name: Login to Docker Hub
7979
if: env.PUSH_PACKAGES == 'true'
80-
uses: docker/login-action@v3
80+
uses: docker/login-action@v4
8181
with:
8282
username: ${{ secrets.DOCKER_USERNAME }}
8383
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -191,15 +191,15 @@ jobs:
191191
needs: containers
192192
steps:
193193
- name: Login to GitHub Container Registry
194-
uses: docker/login-action@v3
194+
uses: docker/login-action@v4
195195
if: env.PUSH_PACKAGES == 'true'
196196
with:
197197
registry: ghcr.io
198198
username: ${{ github.actor }}
199199
password: ${{ secrets.GITHUB_TOKEN }}
200200

201201
- name: Login to Docker Hub
202-
uses: docker/login-action@v3
202+
uses: docker/login-action@v4
203203
if: env.PUSH_PACKAGES == 'true'
204204
with:
205205
username: ${{ secrets.DOCKER_USERNAME }}

0 commit comments

Comments
 (0)