-
Notifications
You must be signed in to change notification settings - Fork 67
[Close #222] fix: install envsubst; add shellcheck #236
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
Open
volker-raschek
wants to merge
6
commits into
sigstore:main
Choose a base branch
from
volker-raschek:fix/222
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b97006d
fix: migrate into dedicated shell script
volker-raschek 06db45d
fix: install gettext/envsubst
volker-raschek 59d4203
feat(ci): add shellcheck
volker-raschek 3d77248
fix(ci): add workflow_dispatch
volker-raschek 080f716
fix(scripts): update package lists
volker-raschek dd0a1d0
fix(ci): restrict GITHUB_TOKEN permissions for shellcheck
volker-raschek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| name: Lint Shell files | ||
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - 'main' | ||
| workflow_dispatch: {} | ||
|
|
||
| permissions: {} | ||
|
|
||
| jobs: | ||
| shellcheck: | ||
| permissions: | ||
| contents: read | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
|
volker-raschek marked this conversation as resolved.
|
||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| with: | ||
| persist-credentials: false | ||
| - name: Install ShellCheck | ||
| run: sudo apt-get update && sudo apt-get install -y shellcheck | ||
| - name: Run ShellCheck | ||
| run: find . -type f -name "*.sh" -print0 | xargs -0 shellcheck -e SC1091 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ on: | |
| push: | ||
| branches: | ||
| - 'main' | ||
| workflow_dispatch: {} | ||
|
|
||
| permissions: {} | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,289 @@ | ||
| #!/bin/bash | ||
|
|
||
| set -e -o pipefail | ||
|
|
||
| input_use_sudo="${input_use_sudo:-"false"}" | ||
| input_cosign_release="${input_cosign_release:-""}" | ||
| input_install_dir="${input_install_dir:-"${HOME}/.cosign"}" | ||
| runner_os="${runner_os:-"unknown"}" | ||
| runner_arch="${runner_arch:-"unknown"}" | ||
|
|
||
| # Enable color output for logs if NO_COLOR is not set, otherwise use plain output. | ||
| shopt -s expand_aliases | ||
| if [ -z "$NO_COLOR" ]; then | ||
| alias log_info="echo -e \"\033[1;32mINFO\033[0m:\"" | ||
| alias log_warn="echo -e \"\033[1;33mWARN\033[0m:\"" | ||
| alias log_error="echo -e \"\033[1;31mERROR\033[0m:\"" | ||
| else | ||
| alias log_info="echo \"INFO:\"" | ||
| alias log_warn="echo \"WARN:\"" | ||
| alias log_error="echo \"ERROR:\"" | ||
| fi | ||
|
|
||
| # Use sudo if requested and available, otherwise run commands as the current user | ||
| SUDO= | ||
| if [[ "${input_use_sudo}" == "true" ]] && command -v sudo >/dev/null; then | ||
| log_info "Using sudo" | ||
| SUDO=sudo | ||
| fi | ||
|
|
||
| # Ensure, that envsubst is available for substituting environment variables in the install-dir input. If not, attempt to | ||
| # detect OS and distribution to provide installation instructions for envsubst. | ||
| if ! command -v envsubst >/dev/null; then | ||
| log_warn "envsubst command not found. Try to detect OS and distribution to provide installation instructions for envsubst." | ||
|
|
||
| if [[ "$OSTYPE" == "linux-gnu"* ]]; then | ||
| if [ -f /etc/os-release ]; then | ||
| . /etc/os-release | ||
| case "$ID" in | ||
| arch) | ||
| $SUDO pacman --sync --refresh --noconfirm gettext | ||
| ;; | ||
| ubuntu|debian) | ||
| $SUDO apt-get update --yes | ||
| $SUDO apt-get install --yes gettext | ||
| ;; | ||
| fedora|rhel|centos) | ||
| $SUDO dnf check-update --refresh | ||
| $SUDO dnf install --assumeyes gettext | ||
| $SUDO dnf clean all | ||
| ;; | ||
| *) | ||
| log_error "Please refer to your distribution's documentation for installing envsubst" | ||
| exit 1 | ||
| ;; | ||
| esac | ||
| else | ||
| log_error "Unable to detect Linux distribution. Please refer to your distribution's documentation for installing envsubst." | ||
| exit 1 | ||
| fi | ||
| else | ||
| log_error "Unsupported OS type: $OSTYPE. Please refer to your system's documentation for installing envsubst." | ||
| exit 1 | ||
| fi | ||
| fi | ||
|
|
||
| # Substitute environment variables in install-dir input | ||
| install_dir=$(envsubst <<<"${input_install_dir}") | ||
|
|
||
| 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 | ||
| } | ||
|
|
||
| ## curl -sL https://github.com/sigstore/cosign/releases/download/v3.0.6/cosign_checksums.txt |\ | ||
| ## gawk 'match($2,/^cosign-([[:alnum:]]+)-([[:alnum:]]+)(\.[[:alnum:]]+)?$/,a){printf "bootstrap_%s_%s_sha=\"%s\"\n",a[1],a[2],$1}' |\ | ||
| ## LANG=C sort | ||
| bootstrap_version='v3.0.6' | ||
| bootstrap_darwin_amd64_sha="4c3e7af8372d3ca3296e62fa56f23fcbb5721cc6ac1827900d398f110d7cd280" | ||
| bootstrap_darwin_arm64_sha="5fadd012ae6381a6a29ff86a7d39aa873878852f1073fc90b15995961ecfb084" | ||
| bootstrap_linux_amd64_sha="c956e5dfcac53d52bcf058360d579472f0c1d2d9b69f55209e256fe7783f4c74" | ||
| bootstrap_linux_arm64_sha="bedac92e8c3729864e13d4a17048007cfafa79d5deca993a43a90ffe018ef2b8" | ||
| bootstrap_linux_arm_sha="67bd25d32daff5664caf51208c95defcb2ad7ac1296f394fa677bb8bacee62f5" | ||
| # shellcheck disable=SC2034 | ||
| bootstrap_linux_ppc64le_sha="08c3e5e0a09c440f49e9a69d8639d37fbec522ec8c5c0ac805243b098e6ea512" | ||
| # shellcheck disable=SC2034 | ||
| bootstrap_linux_riscv64_sha="e25952e798958b0f9168d044153ccc353f5469ca4b71a1707dffad0534d27017" | ||
| # shellcheck disable=SC2034 | ||
| bootstrap_linux_s390x_sha="3cf4b769258ed9cc3c2a93268c0d5c1cc3fbd094af8df21035cbac8fb0d7c088" | ||
| bootstrap_windows_amd64_sha="9b85a88ebff2d9dd30ff4984a6f61f2cedc232dd87d81fa7f2ff3c0ed96c241c" | ||
|
|
||
| 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 | ||
|
|
||
|
|
||
| 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 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.