Skip to content

Commit db186ed

Browse files
Update docker/login-action action to v4 (#1046)
| datasource | package | from | to | | ----------- | ------------------- | ---- | -- | | github-tags | docker/login-action | v3 | v4 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c7c4d75 commit db186ed

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/docker-openresty.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
driver-opts: network=host
3434

3535
- name: DockerHub Login
36-
uses: docker/login-action@v3
36+
uses: docker/login-action@v4
3737
with:
3838
username: ${{ secrets.DOCKER_USERNAME }}
3939
password: ${{ secrets.DOCKER_PASSWORD }}
4040
if: github.event_name != 'pull_request'
4141

4242
- name: Login to GitHub Container Registry
43-
uses: docker/login-action@v3
43+
uses: docker/login-action@v4
4444
with:
4545
registry: ghcr.io
4646
username: ${{ github.repository_owner }}

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848
driver-opts: network=host
4949

5050
- name: DockerHub Login
51-
uses: docker/login-action@v3
51+
uses: docker/login-action@v4
5252
with:
5353
username: ${{ secrets.DOCKER_USERNAME }}
5454
password: ${{ secrets.DOCKER_PASSWORD }}
5555
if: github.event_name != 'pull_request'
5656

5757
- name: Login to GitHub Container Registry
58-
uses: docker/login-action@v3
58+
uses: docker/login-action@v4
5959
with:
6060
registry: ghcr.io
6161
username: ${{ github.repository_owner }}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,14 @@ jobs:
102102
if: ${{ matrix.needs-updating == 'true' }}
103103

104104
- name: DockerHub Login
105-
uses: docker/login-action@v3
105+
uses: docker/login-action@v4
106106
with:
107107
username: ${{ secrets.DOCKER_USERNAME }}
108108
password: ${{ secrets.DOCKER_PASSWORD }}
109109
if: ${{ matrix.needs-updating == 'true' }}
110110

111111
- name: Login to GitHub Container Registry
112-
uses: docker/login-action@v3
112+
uses: docker/login-action@v4
113113
with:
114114
registry: ghcr.io
115115
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)