Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github-actions(deps): bump docker/login-action from 3.1.0 to 3.2.0 in /security-actions/sign-docker-image #124

Merged
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 security-actions/sign-docker-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ runs:
# By default cosign publishes image signatures alongside image repositories in the same registry
# This step is needed for pulling image from / pushing image sig to private registry
- name: Login to Image Registry - ${{ inputs.image_registry_domain }}
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
if: ${{ inputs.registry_username != '' && inputs.registry_password != '' }}
with:
registry: ${{ inputs.image_registry_domain }}
Expand All @@ -96,7 +96,7 @@ runs:

# This step runs if signature registry is different from image registry
- name: Login to Signature Registry - ${{ inputs.signature_registry_domain }}
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
if: ${{ inputs.signature_registry_username != '' && inputs.signature_registry_password != '' }}
with:
registry: ${{ inputs.signature_registry_domain }}
Expand Down
Loading