Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/actions/setup-python-tools/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ runs:
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.9.5" # Matches the version in requirements/install_py_deps.sh
version: "0.12.9" # Matches the version in requirements/install_py_deps.sh

# Step 3: Set up Gcloud AUTH using Workload Identity Federation
# See following for context: https://cloud.google.com/blog/products/identity-security/enabling-keyless-authentication-from-github-actions
Expand Down
4 changes: 2 additions & 2 deletions requirements/install_py_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ install_uv_if_needed() {
if ! command -v uv &> /dev/null
then
echo "uv could not be found. Installing uv..."
EXPECTED_SHA256="8402ab80d2ef54d7044a71ea4e4e1e8db3b20c87c7bffbc30bff59f1e80ebbd5"
curl -LsSf -o uv_installer.sh https://astral.sh/uv/0.9.5/install.sh # Matches the version in .github/actions/setup-python-tools/action.yml
EXPECTED_SHA256="222e006c0fe4a0d793031833e469b21df72311f4e3526ffecca0e19e6dfabc32"
curl -LsSf -o uv_installer.sh https://astral.sh/uv/0.12.9/install.sh # Matches the version in .github/actions/setup-python-tools/action.yml

# Verify SHA256 checksum - script will exit if this fails due to set -e
if ! echo "$EXPECTED_SHA256 uv_installer.sh" | sha256sum -c -; then
Expand Down