Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/docker/backend/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ runs:
- name: Login to GitHub Container Registry
if: ${{ inputs.deliver == 'true' }}
# Pinned to v3 commit hash for security
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
id: ghcr-login
continue-on-error: true
with:
Expand All @@ -91,7 +91,7 @@ runs:
- name: Login to Docker Hub
if: ${{ inputs.deliver == 'true' && inputs.docker-username != '' && inputs.docker-password != '' }}
# Pinned to v3 commit hash for security
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
id: dockerhub-login
continue-on-error: true
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/docker/frontend-landing/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
- name: Login to GitHub Container Registry
id: ghcr-login
# Pinned to v3 commit hash for security
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
continue-on-error: true
with:
registry: ghcr.io
Expand All @@ -84,7 +84,7 @@ runs:
id: dockerhub-login
if: inputs.docker-username != '' && inputs.docker-password != ''
# Pinned to v3 commit hash for security
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
continue-on-error: true
with:
username: ${{ inputs.docker-username }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/docker/frontend-web/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
- name: Login to GitHub Container Registry
id: ghcr-login
# Pinned to v3 commit hash for security
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
continue-on-error: true
with:
registry: ghcr.io
Expand All @@ -84,7 +84,7 @@ runs:
id: dockerhub-login
if: inputs.docker-username != '' && inputs.docker-password != ''
# Pinned to v3 commit hash for security
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
continue-on-error: true
with:
username: ${{ inputs.docker-username }}
Expand Down
Loading