mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
24 lines
930 B
Bash
24 lines
930 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-pulumi.sh
|
|
## Desc: Install Pulumi
|
|
## Supply chain security: Pulumi - checksum validation
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
# Dowload Pulumi
|
|
version=$(curl -fsSL "https://www.pulumi.com/latest-version")
|
|
download_url="https://get.pulumi.com/releases/sdk/pulumi-v${version}-linux-x64.tar.gz"
|
|
archive_path=$(download_with_retry "$download_url")
|
|
|
|
# Supply chain security - Pulumi
|
|
external_hash=$(get_checksum_from_url "https://github.com/pulumi/pulumi/releases/download/v${version}/SHA512SUMS" "linux-x64.tar.gz" "SHA512")
|
|
use_checksum_comparison "$archive_path" "$external_hash" "512"
|
|
|
|
# Unzipping Pulumi
|
|
tar --strip=1 -xf "$archive_path" -C /usr/local/bin
|
|
|
|
invoke_tests "Tools" "Pulumi"
|