From d8a40ef7508b20f95d7a5f12a6a0d07b4d1c5b73 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 5 Sep 2026 21:44:12 -0700 Subject: [PATCH] ci: pin actions/setup-python to v7 in star_history workflow (#11191) The star_history workflow referenced actions/setup-python@v8, which does not exist, causing the workflow to fail at the "Set up job" step. Pin to v7, matching the version used across the other workflows. --- .github/workflows/star_history.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/star_history.yml b/.github/workflows/star_history.yml index 87905fa60..9d20d7576 100644 --- a/.github/workflows/star_history.yml +++ b/.github/workflows/star_history.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v8 + uses: actions/setup-python@v7 with: python-version: "3.x" cache: pip