We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2345500 commit 08adf51Copy full SHA for 08adf51
1 file changed
.github/workflows/sbom.yml
@@ -76,9 +76,11 @@ jobs:
76
77
- name: Install Grype
78
run: |
79
- #curl -sSfL https://raw.githubusercontent.com/anchore/grype/main/install.sh | sh -s -- -b /usr/local/bin
80
# Step 1: Download
81
- curl -sSfL https://raw.githubusercontent.com/anchore/grype/main/install.sh -o install-grype.sh
+ curl --proto '=https' --tlsv1.2 --retry 3 --fail -sSL \
+ https://raw.githubusercontent.com/anchore/grype/main/install.sh \
82
+ -o install-grype.sh
83
+
84
85
# Step 2: Verify (signature / checksum ideally)
86
chmod +x install-grype.sh
0 commit comments