Skip to content

Commit ba55823

Browse files
Bump docker/login-action from 3 to 4 (#4121)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b3d93e5 commit ba55823

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/docker-dev-test-env.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: docker/setup-buildx-action@v3
6767

6868
- name: Login to Docker Hub
69-
uses: docker/login-action@v3
69+
uses: docker/login-action@v4
7070
with:
7171
username: ${{ secrets.DOCKERHUB_USERNAME }}
7272
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -107,13 +107,13 @@ jobs:
107107

108108
steps:
109109
- name: Login to Docker Hub
110-
uses: docker/login-action@v3
110+
uses: docker/login-action@v4
111111
with:
112112
username: ${{ secrets.DOCKERHUB_USERNAME }}
113113
password: ${{ secrets.DOCKERHUB_TOKEN }}
114114

115115
- name: Login to GitHub Container Registry
116-
uses: docker/login-action@v3
116+
uses: docker/login-action@v4
117117
with:
118118
registry: ghcr.io
119119
username: ${{ github.repository_owner }}

.github/workflows/docker-end-user.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
/bin/bash -c "source /usr/local/bin/dolfinx-complex-mode && python3 -c $'import dolfinx; from dolfinx.fem import functionspace; from dolfinx.mesh import create_unit_square; from mpi4py import MPI; mesh = create_unit_square(MPI.COMM_WORLD, 10, 10); V = functionspace(mesh, (\"Lagrange\", 1));'"
183183
184184
- name: Login to Docker Hub
185-
uses: docker/login-action@v3
185+
uses: docker/login-action@v4
186186
with:
187187
username: ${{ secrets.DOCKERHUB_USERNAME }}
188188
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -212,13 +212,13 @@ jobs:
212212
echo "TAG=${USER_INPUT:-nightly}" >> $GITHUB_ENV
213213
214214
- name: Login to Docker Hub
215-
uses: docker/login-action@v3
215+
uses: docker/login-action@v4
216216
with:
217217
username: ${{ secrets.DOCKERHUB_USERNAME }}
218218
password: ${{ secrets.DOCKERHUB_TOKEN }}
219219

220220
- name: Login to GitHub Container Registry
221-
uses: docker/login-action@v3
221+
uses: docker/login-action@v4
222222
with:
223223
registry: ghcr.io
224224
username: ${{ github.repository_owner }}

.github/workflows/docker-update-stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
uses: docker/setup-buildx-action@v3
3131

3232
- name: Login to Docker Hub
33-
uses: docker/login-action@v3
33+
uses: docker/login-action@v4
3434
with:
3535
username: ${{ secrets.DOCKERHUB_USERNAME }}
3636
password: ${{ secrets.DOCKERHUB_TOKEN }}
3737

3838
- name: Login to GitHub Container Registry
39-
uses: docker/login-action@v3
39+
uses: docker/login-action@v4
4040
with:
4141
registry: ghcr.io
4242
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)