Fix check unauthorized toolkit updates workflow (#448)

Changing toolkits to uv broke this.
This commit is contained in:
Eric Gustin 2025-06-17 13:32:08 -07:00 committed by GitHub
parent 3149058aa1
commit 99aa53d025
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,7 +50,7 @@ jobs:
id: current_versions
# Get all toolkits in the format of "package_name=version" for the PR's current commit and save to current_versions.txt
run: |
paste <(cat toolkits/*/pyproject.toml | grep "^name = " | cut -d'"' -f2) <(cat toolkits/*/pyproject.toml | grep "^version = " | cut -d'"' -f2) | awk '{print $1"="$2}' > current_versions.txt
paste <(cat toolkits/*/pyproject.toml | grep "^name = " | grep "arcade_" | cut -d'"' -f2) <(cat toolkits/*/pyproject.toml | grep "^version = " | cut -d'"' -f2) | awk '{print $1"="$2}' > current_versions.txt
echo "Package versions in current commit:"
cat current_versions.txt