Skip to content

Commit d7944d9

Browse files
Update docker/login-action action to v3.4.0
1 parent 6be779b commit d7944d9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build-containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up Docker Buildx
5151
uses: docker/[email protected]
5252
- name: Log in to GitHub container registry
53-
uses: docker/login-action@v3.3.0
53+
uses: docker/login-action@v3.4.0
5454
with:
5555
registry: ghcr.io
5656
username: ${{ github.actor }}

.github/workflows/build-db-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set up Docker Buildx
3535
uses: docker/[email protected]
3636
- name: Log in to GitHub container registry
37-
uses: docker/login-action@v3.3.0
37+
uses: docker/login-action@v3.4.0
3838
with:
3939
registry: ghcr.io
4040
username: ${{ github.actor }}

.github/workflows/container-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
username: ${{ github.actor }}
6868
password: ${{ secrets.GITHUB_TOKEN }}
6969
- name: Log in to Docker Hub
70-
uses: docker/login-action@v3.3.0
70+
uses: docker/login-action@v3.4.0
7171
with:
7272
username: ${{ secrets.DOCKERHUB_USERNAME }}
7373
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/push-container-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
with:
2323
version: ${{ inputs.version }}
2424
- name: Log in to GitHub container registry
25-
uses: docker/login-action@v3.3.0
25+
uses: docker/login-action@v3.4.0
2626
with:
2727
registry: ghcr.io
2828
username: ${{ github.actor }}
2929
password: ${{ secrets.GITHUB_TOKEN }}
3030
- name: Login to Docker Hub
31-
uses: docker/login-action@v3.3.0
31+
uses: docker/login-action@v3.4.0
3232
with:
3333
username: ${{ secrets.DOCKERHUB_USERNAME }}
3434
password: ${{ secrets.DOCKERHUB_TOKEN }}

0 commit comments

Comments
 (0)