-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathaction.yml
More file actions
278 lines (243 loc) · 12.3 KB
/
action.yml
File metadata and controls
278 lines (243 loc) · 12.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# action.yml
name: cosign-installer
author: sigstore
description: 'Installs cosign and includes it in your path'
branding:
icon: 'package'
color: 'blue'
# This is pinned to the last major release, we have to bump it for each action version.
inputs:
cosign-release:
description: 'cosign release version to be installed'
required: false
default: 'v3.0.5'
install-dir:
description: 'Where to install the cosign binary'
required: false
default: '$HOME/.cosign'
use-sudo:
description: 'set to true if install-dir location requires sudo privs'
required: false
default: 'false'
runs:
using: "composite"
steps:
# We verify the version against a SHA **in the published action itself**, not in the GCS bucket.
- shell: bash
env:
input_cosign_release: ${{ inputs.cosign-release }}
input_install_dir: ${{ inputs.install-dir }}
input_use_sudo: ${{ inputs.use-sudo }}
runner_arch: ${{ runner.arch }}
runner_os: ${{ runner.os }}
run: |
#!/bin/bash
# Substitute environment variables in install-dir input
install_dir=$(envsubst <<<"${input_install_dir}")
# cosign install script
shopt -s expand_aliases
if [ -z "$NO_COLOR" ]; then
alias log_info="echo -e \"\033[1;32mINFO\033[0m:\""
alias log_error="echo -e \"\033[1;31mERROR\033[0m:\""
else
alias log_info="echo \"INFO:\""
alias log_error="echo \"ERROR:\""
fi
set -e
CURL_RETRIES=3
# This function helps compare versions.
# Returns 0 if version1 >= version2, 1 otherwise.
# Usage: is_version_ge "3.0.0" "$version_num"
is_version_ge() {
[ "$(printf '%s\n' "$1" "$2" | sort -V | head -n1)" == "$1" ]
}
# Check for unsupported old versions (anything below v2.0.0)
if [[ "${input_cosign_release}" != "main" ]]; then
# Extract version without 'v' prefix for comparison
version_num="${input_cosign_release}"
version_num="${version_num#v}"
# Check if version is less than v2.0.0
if ! is_version_ge "2.0.0" "$version_num"; then
log_error "cosign versions below v2.0.0 are no longer supported."
log_error "Requested version: ${input_cosign_release}"
log_error "Please use cosign v2.6.0 or later."
log_error "See https://github.com/sigstore/cosign/releases for available versions."
exit 1
fi
fi
mkdir -p "${install_dir}"
if [[ "${input_cosign_release}" == "main" ]]; then
log_info "installing cosign via 'go install' from its main version"
GOBIN=$(go env GOPATH)/bin
go install github.com/sigstore/cosign/v3/cmd/cosign@main
ln -s "$GOBIN/cosign" "${install_dir}/cosign"
exit 0
fi
shaprog() {
case ${runner_os} in
Linux|linux)
sha256sum "$1" | cut -d' ' -f1
;;
macOS|macos)
shasum -a256 "$1" | cut -d' ' -f1
;;
Windows|windows)
powershell -command "(Get-FileHash $1 -Algorithm SHA256 | Select-Object -ExpandProperty Hash).ToLower()"
;;
*)
log_error "unsupported OS ${runner_os}"
exit 1
;;
esac
}
bootstrap_version='v3.0.5'
bootstrap_linux_amd64_sha="db15cc99e6e4837daabab023742aaddc3841ce57f193d11b7c3e06c8003642b2"
bootstrap_linux_arm_sha="4866f388e87125f1f492231dbbb347bb73b601c810595b65b2ae09eae4c8a99d"
bootstrap_linux_arm64_sha="d098f3168ae4b3aa70b4ca78947329b953272b487727d1722cb3cb098a1a20ab"
bootstrap_darwin_amd64_sha="e032c44d3f7c247bbb2966b41239f88ffba002497a4516358d327ad5693c386f"
bootstrap_darwin_arm64_sha="4888c898e2901521a6bd4cf4f0383c9465588a6a46ecd2465ad34faf13f09eb7"
bootstrap_windows_amd64_sha="44e9e44202b67ddfaaf5ea1234f5a265417960c4ae98c5b57c35bc40ba9dd714"
cosign_executable_name=cosign
trap "popd >/dev/null" EXIT
pushd "${install_dir}" > /dev/null
case ${runner_os} in
Linux|linux)
case ${runner_arch} in
X64|amd64)
bootstrap_filename='cosign-linux-amd64'
bootstrap_sha=${bootstrap_linux_amd64_sha}
desired_cosign_filename='cosign-linux-amd64'
;;
ARM|arm)
bootstrap_filename='cosign-linux-arm'
bootstrap_sha=${bootstrap_linux_arm_sha}
desired_cosign_filename='cosign-linux-arm'
;;
ARM64|arm64)
bootstrap_filename='cosign-linux-arm64'
bootstrap_sha=${bootstrap_linux_arm64_sha}
desired_cosign_filename='cosign-linux-arm64'
;;
*)
log_error "unsupported architecture ${runner_arch}"
exit 1
;;
esac
;;
macOS|macos)
case ${runner_arch} in
X64|amd64)
bootstrap_filename='cosign-darwin-amd64'
bootstrap_sha=${bootstrap_darwin_amd64_sha}
desired_cosign_filename='cosign-darwin-amd64'
;;
ARM64|arm64)
bootstrap_filename='cosign-darwin-arm64'
bootstrap_sha=${bootstrap_darwin_arm64_sha}
desired_cosign_filename='cosign-darwin-arm64'
;;
*)
log_error "unsupported architecture ${runner_arch}"
exit 1
;;
esac
;;
Windows|windows)
case ${runner_arch} in
X64|amd64)
bootstrap_filename='cosign-windows-amd64.exe'
bootstrap_sha=${bootstrap_windows_amd64_sha}
desired_cosign_filename='cosign-windows-amd64.exe'
cosign_executable_name=cosign.exe
;;
*)
log_error "unsupported architecture ${runner_arch}"
exit 1
;;
esac
;;
*)
log_error "unsupported os ${runner_os}"
exit 1
;;
esac
SUDO=
if [[ "${input_use_sudo}" == "true" ]] && command -v sudo >/dev/null; then
SUDO=sudo
fi
expected_bootstrap_version_digest=${bootstrap_sha}
log_info "Downloading bootstrap version '${bootstrap_version}' of cosign to verify version to be installed...\n https://github.com/sigstore/cosign/releases/download/${bootstrap_version}/${bootstrap_filename}"
$SUDO curl --retry "${CURL_RETRIES}" -fsSL "https://github.com/sigstore/cosign/releases/download/${bootstrap_version}/${bootstrap_filename}" -o "${cosign_executable_name}"
shaBootstrap=$(shaprog "${cosign_executable_name}")
if [[ "$shaBootstrap" != "${expected_bootstrap_version_digest}" ]]; then
log_error "Unable to validate cosign version: '${input_cosign_release}'"
exit 1
fi
$SUDO chmod +x "${cosign_executable_name}"
# If the bootstrap and specified `cosign` releases are the same, we're done.
if [[ "${input_cosign_release}" == "${bootstrap_version}" ]]; then
log_info "bootstrap version successfully verified and matches requested version so nothing else to do"
exit 0
fi
semver='^v([0-9]+\.){0,2}(\*|[0-9]+)(-?r?c?)(\.[0-9]+)$'
if [[ "${input_cosign_release}" =~ $semver ]]; then
log_info "Custom cosign version '${input_cosign_release}' requested"
else
log_error "Unable to validate requested cosign version: '${input_cosign_release}'"
exit 1
fi
# Download custom cosign
log_info "Downloading platform-specific version '${input_cosign_release}' of cosign...\n https://github.com/sigstore/cosign/releases/download/${input_cosign_release}/${desired_cosign_filename}"
$SUDO curl --retry "${CURL_RETRIES}" -fsSL "https://github.com/sigstore/cosign/releases/download/${input_cosign_release}/${desired_cosign_filename}" -o "cosign_${input_cosign_release}"
shaCustom=$(shaprog "cosign_${input_cosign_release}");
# same hash means it is the same release
if [[ "$shaCustom" != "$shaBootstrap" ]]; then
log_info "Downloading cosign public key '${input_cosign_release}' of cosign...\n https://raw.githubusercontent.com/sigstore/cosign/${input_cosign_release}/release/release-cosign.pub"
RELEASE_COSIGN_PUB_KEY=https://raw.githubusercontent.com/sigstore/cosign/${input_cosign_release}/release/release-cosign.pub
RELEASE_COSIGN_PUB_KEY_SHA='f4cea466e5e887a45da5031757fa1d32655d83420639dc1758749b744179f126'
log_info "Verifying public key matches expected value"
$SUDO curl --retry "${CURL_RETRIES}" -fsSL "$RELEASE_COSIGN_PUB_KEY" -o public.key
sha_fetched_key=$(shaprog public.key)
if [[ "$sha_fetched_key" != "$RELEASE_COSIGN_PUB_KEY_SHA" ]]; then
log_error "Fetched public key does not match expected digest, exiting"
exit 1
fi
if is_version_ge "3.0.1" "$version_num"; then
# we're trying to get something greater than or equal to v3.0.1
keyless_signature_file=${desired_cosign_filename}.sigstore.json
log_info "Downloading keyless verification bundle for platform-specific '${input_cosign_release}' of cosign...\n https://github.com/sigstore/cosign/releases/download/${input_cosign_release}/${keyless_signature_file}"
$SUDO curl --retry "${CURL_RETRIES}" -fsSLO "https://github.com/sigstore/cosign/releases/download/${input_cosign_release}/${keyless_signature_file}"
log_info "Using bootstrap cosign to verify keyless signature of desired cosign version"
"./${cosign_executable_name}" verify-blob --certificate-identity=keyless@projectsigstore.iam.gserviceaccount.com --certificate-oidc-issuer=https://accounts.google.com --bundle "${keyless_signature_file}" "cosign_${input_cosign_release}"
if is_version_ge "3.0.3" "$version_num"; then
# we're trying to get something greater than or equal to v3.0.3
kms_signature_file=${desired_cosign_filename}-kms.sigstore.json
log_info "Downloading KMS verification bundle for platform-specific '${input_cosign_release}' of cosign...\n https://github.com/sigstore/cosign/releases/download/${input_cosign_release}/${kms_signature_file}"
$SUDO curl --retry "${CURL_RETRIES}" -fsSLO "https://github.com/sigstore/cosign/releases/download/${input_cosign_release}/${kms_signature_file}"
log_info "Using bootstrap cosign to verify signature of desired cosign version"
"./${cosign_executable_name}" verify-blob --key public.key --bundle "${kms_signature_file}" "cosign_${input_cosign_release}"
fi
else
signature_file=${desired_cosign_filename}.sig
log_info "Downloading detached signature for platform-specific '${input_cosign_release}' of cosign...\n https://github.com/sigstore/cosign/releases/download/${input_cosign_release}/${signature_file}"
$SUDO curl --retry "${CURL_RETRIES}" -fsSLO "https://github.com/sigstore/cosign/releases/download/${input_cosign_release}/${signature_file}"
log_info "Using bootstrap cosign to verify signature of desired cosign version"
"./${cosign_executable_name}" verify-blob --key public.key --signature "${signature_file}" "cosign_${input_cosign_release}"
fi
$SUDO rm "${cosign_executable_name}"
$SUDO mv "cosign_${input_cosign_release}" "${cosign_executable_name}"
$SUDO chmod +x "${cosign_executable_name}"
log_info "Installation complete!"
fi
- if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
shell: bash
env:
input_install_dir: ${{ inputs.install-dir }}
run: envsubst <<<"${input_install_dir}" >> "$GITHUB_PATH"
- if: ${{ runner.os == 'Windows' }}
shell: pwsh
env:
input_install_dir: ${{ inputs.install-dir }}
run: |
$install_dir = $ExecutionContext.InvokeCommand.ExpandString("${env:input_install_dir}")
echo "${install_dir}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append