Skip to content

Commit 00ea898

Browse files
dependabot[bot]nemesifier
authored andcommitted
[ci] 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 101870b commit 00ea898

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
# echo "$DOCKER_HUB_SECRET" | docker login --username "$DOCKER_HUB_USERNAME" --password-stdin
9191
- name: Login to Docker Hub
9292
if: ${{ success() && github.event_name == 'push' && github.ref == 'refs/heads/master' }}
93-
uses: docker/login-action@v3
93+
uses: docker/login-action@v4
9494
with:
9595
username: ${{ secrets.DOCKER_HUB_USERNAME }}
9696
password: ${{ secrets.DOCKER_HUB_SECRET }}
@@ -105,7 +105,7 @@ jobs:
105105

106106
- name: Login to GitLab Container Registry
107107
if: ${{ success() && github.event_name == 'push' && github.ref == 'refs/heads/master' }}
108-
uses: docker/login-action@v3
108+
uses: docker/login-action@v4
109109
with:
110110
registry: registry.gitlab.com
111111
username: ${{ secrets.GITLAB_DOCKER_REGISTRY_USER }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# the following action is equivalent to
2828
# echo "$DOCKER_HUB_SECRET" | docker login --username "$DOCKER_HUB_USERNAME" --password-stdin
2929
- name: Login to Docker Hub
30-
uses: docker/login-action@v3
30+
uses: docker/login-action@v4
3131
with:
3232
username: ${{ secrets.DOCKER_HUB_USERNAME }}
3333
password: ${{ secrets.DOCKER_HUB_SECRET }}
@@ -37,7 +37,7 @@ jobs:
3737
make release USER=docker.io/openwisp
3838
3939
- name: Login to GitLab Container Registry
40-
uses: docker/login-action@v3
40+
uses: docker/login-action@v4
4141
with:
4242
registry: registry.gitlab.com
4343
username: ${{ secrets.GITLAB_DOCKER_REGISTRY_USER }}

0 commit comments

Comments
 (0)