Skip to content

Commit 4e94e61

Browse files
Update docker/login-action action to v4.3.0
1 parent c2a00a5 commit 4e94e61

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.3.0
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.3.0
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
@@ -66,7 +66,7 @@ jobs:
6666
username: ${{ github.actor }}
6767
password: ${{ secrets.GITHUB_TOKEN }}
6868
- name: Log in to Docker Hub
69-
uses: docker/login-action@v4.2.0
69+
uses: docker/login-action@v4.3.0
7070
with:
7171
username: ${{ secrets.DOCKERHUB_USERNAME }}
7272
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.3.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@v4.2.0
31+
uses: docker/login-action@v4.3.0
3232
with:
3333
username: ${{ secrets.DOCKERHUB_USERNAME }}
3434
password: ${{ secrets.DOCKERHUB_TOKEN }}

0 commit comments

Comments
 (0)