Skip to content

Commit 97a8f8f

Browse files
chore(actions): update docker/login-action action to v3
1 parent 532153b commit 97a8f8f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/prereleased.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
7676
- name: Build Docker Image
7777
id: docker_build
78-
uses: docker/build-push-action@v5
78+
uses: docker/build-push-action@v4
7979
env:
8080
DOCKER_IMAGE_TAG: ${{ env.DOCKER_REPOSITORY_COMMAND }}:${{ needs.prepare.outputs.version }}
8181
with:
@@ -129,7 +129,7 @@ jobs:
129129
notion_page_update_properties: '{ "Docker Scan": { "rich_text": [ { "text": { "content": ${{ env.STATUS_ICON }}, "link": ${{ env.STATUS_URL }} } } ] }, "SBOMS": { "url": "https://s3.console.aws.amazon.com/s3/buckets/repos-sboms?region=${{ env.AWS_S3_REGION }}&prefix=${{ github.event.repository.name }}/" } }'
130130

131131
- name: Login to Dockerhub Registry
132-
uses: docker/login-action@v2
132+
uses: docker/login-action@v3
133133
with:
134134
username: ${{ secrets.DOCKERHUB_USERNAME }}
135135
password: ${{ secrets.DOCKERHUB_PASSWORD }}
@@ -161,7 +161,7 @@ jobs:
161161
162162
- name: Build Docker Image
163163
id: docker_build
164-
uses: docker/build-push-action@v5
164+
uses: docker/build-push-action@v4
165165
env:
166166
DOCKER_IMAGE_TAG: ${{ env.DOCKER_REPOSITORY_LAMBDA }}:${{ needs.prepare.outputs.version }}
167167
with:
@@ -215,7 +215,7 @@ jobs:
215215
notion_page_update_properties: '{ "Docker Scan": { "rich_text": [ { "text": { "content": ${{ env.STATUS_ICON }}, "link": ${{ env.STATUS_URL }} } } ] }, "SBOMS": { "url": "https://s3.console.aws.amazon.com/s3/buckets/repos-sboms?region=${{ env.AWS_S3_REGION }}&prefix=${{ github.event.repository.name }}/" } }'
216216

217217
- name: Login to Dockerhub Registry
218-
uses: docker/login-action@v2
218+
uses: docker/login-action@v3
219219
with:
220220
username: ${{ secrets.DOCKERHUB_USERNAME }}
221221
password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/released.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
steps:
7777
- name: Login to Dockerhub Registry
78-
uses: docker/login-action@v2
78+
uses: docker/login-action@v3
7979
with:
8080
username: ${{ secrets.DOCKERHUB_USERNAME }}
8181
password: ${{ secrets.DOCKERHUB_PASSWORD }}
@@ -99,7 +99,7 @@ jobs:
9999

100100
steps:
101101
- name: Login to Dockerhub Registry
102-
uses: docker/login-action@v2
102+
uses: docker/login-action@v3
103103
with:
104104
username: ${{ secrets.DOCKERHUB_USERNAME }}
105105
password: ${{ secrets.DOCKERHUB_PASSWORD }}

0 commit comments

Comments
 (0)