Skip to content

Commit 4fb12e8

Browse files
Update docker/login-action action to v3.4.0
1 parent 13c4d3f commit 4fb12e8

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
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up Docker Buildx
4646
uses: docker/setup-buildx-action@v3.11.1
4747
- name: Log in to GitHub container registry
48-
uses: docker/login-action@v3.3.0
48+
uses: docker/login-action@v3.4.0
4949
with:
5050
registry: ghcr.io
5151
username: ${{ github.actor }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Docker Buildx
3030
uses: docker/setup-buildx-action@v3.11.1
3131
- name: Log in to GitHub container registry
32-
uses: docker/login-action@v3.3.0
32+
uses: docker/login-action@v3.4.0
3333
with:
3434
registry: ghcr.io
3535
username: ${{ github.actor }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
username: ${{ github.actor }}
6363
password: ${{ secrets.GITHUB_TOKEN }}
6464
- name: Log in to Docker Hub
65-
uses: docker/login-action@v3.3.0
65+
uses: docker/login-action@v3.4.0
6666
with:
6767
username: ${{ secrets.DOCKERHUB_USERNAME }}
6868
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)