Skip to content

Commit 80c38d6

Browse files
Update docker/login-action action to v4.5.1
1 parent 784e566 commit 80c38d6

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: Set up Docker Buildx
6060
uses: docker/setup-buildx-action@v4.0.0
6161
- name: Log in to GitHub container registry
62-
uses: docker/login-action@v4.2.0
62+
uses: docker/login-action@v4.5.1
6363
with:
6464
registry: ghcr.io
6565
username: ${{ github.actor }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Docker Buildx
3434
uses: docker/setup-buildx-action@v4.0.0
3535
- name: Log in to GitHub container registry
36-
uses: docker/login-action@v4.2.0
36+
uses: docker/login-action@v4.5.1
3737
with:
3838
registry: ghcr.io
3939
username: ${{ github.actor }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
username: ${{ github.actor }}
8484
password: ${{ secrets.GITHUB_TOKEN }}
8585
- name: Log in to Docker Hub
86-
uses: docker/login-action@v4.2.0
86+
uses: docker/login-action@v4.5.1
8787
with:
8888
username: ${{ secrets.DOCKERHUB_USERNAME }}
8989
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@v4.2.0
25+
uses: docker/login-action@v4.5.1
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@v4.2.0
31+
uses: docker/login-action@v4.5.1
3232
with:
3333
username: ${{ secrets.DOCKERHUB_USERNAME }}
3434
password: ${{ secrets.DOCKERHUB_TOKEN }}

0 commit comments

Comments
 (0)