Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
hardcode version strings
  • Loading branch information
matifali committed Mar 18, 2025
commit fb123556470239815b90c8f87457504fe45ef1f2
6 changes: 1 addition & 5 deletions .github/actions/install-cosign/action.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
name: "Install cosign"
description: |
Cosign Github Action.
inputs:
version:
description: "cosign release"
default: "v2.4.3"
runs:
using: "composite"
steps:
- name: Install cosign
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
with:
cosign-release: {{ inputs.version }}
cosign-release: "v2.4.3"
6 changes: 1 addition & 5 deletions .github/actions/install-syft/action.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
name: "Install syft"
description: |
Downloads Syft to the Action tool cache and provides a reference.
inputs:
version:
description: "syft version."
default: "1.22.8"
runs:
using: "composite"
steps:
- name: Install syft
uses: anchore/sbom-action/download-syft@f325610c9f50a54015d37c8d16cb3b0e2c8f4de0 # v0.18.0
with:
syft-version: {{ inputs.version }}
syft-version: "1.22.8"
Loading