fix(ci): use python3 in validate checkout (slim image has no python symlink)
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
Deploy / Production Browser E2E (push) Has been skipped
Deploy / Deploy Staging (push) Failing after 212h21m3s
CI/CD Pipeline / Frontend Lint (push) Failing after 212h21m31s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 212h21m31s

This commit is contained in:
2026-06-30 16:32:52 +08:00
parent 5fbd0c5f32
commit d491090bd3
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
shell: sh
run: |
set -eu
python - <<'PY'
python3 - <<'PY'
import io, os, tarfile, urllib.request
url = f"{os.environ['GITHUB_API_URL']}/repos/{os.environ['GITHUB_REPOSITORY']}/archive/{os.environ['GITHUB_SHA']}.tar.gz"
request = urllib.request.Request(url, headers={"Authorization": f"token {os.environ['GITHUB_TOKEN']}"})