Skip to content

Commit d153658

Browse files
authoredMar 14, 2025··
Update docker/login-action action to v3.4.0
Update docker/login-action from 3.3.0 to 3.4.0 Change-type: patch
1 parent 27f25d9 commit d153658

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed
 

‎.github/workflows/flowzone.yml

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎flowzone.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@
259259
- &loginWithDockerHub
260260
name: Login to Docker Hub
261261
continue-on-error: true
262-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
262+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
263263
with:
264264
registry: docker.io
265265
username: ${{ secrets.DOCKERHUB_USER || secrets.DOCKER_REGISTRY_USER }}
@@ -268,7 +268,7 @@
268268
- &loginWithGitHubContainerRegistry
269269
name: Login to GitHub Container Registry
270270
continue-on-error: true
271-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
271+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
272272
with:
273273
# Feb 2023: as per GitHub support: "You cannot authenticate with a GitHub App token on the GitHub Package Registry"
274274
# Nov 2024: Still cannot use GitHub App Tokens to authenticate with the GitHub Package Registry (login works, push/pull fails)
@@ -280,15 +280,15 @@
280280
name: Login to AWS/ECR (public)
281281
if: steps.aws_credentials.outcome == 'success'
282282
continue-on-error: true
283-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
283+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
284284
with:
285285
registry: public.ecr.aws
286286

287287
- &loginWithECRPrivate
288288
name: Login to AWS/ECR (private)
289289
if: steps.aws_credentials.outcome == 'success'
290290
continue-on-error: true
291-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
291+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
292292
with:
293293
registry: ${{ matrix.image }}
294294

0 commit comments

Comments
 (0)
Please sign in to comment.