From e2b4b03aa490e9b66ccd8067e7fc118767782188 Mon Sep 17 00:00:00 2001 From: Christopher Lowenthal Date: Fri, 8 May 2026 16:57:34 -0400 Subject: [PATCH] chore(ci): bump GitHub Actions off Node 20 runtimes Node 20 reached EOL on 2026-04-30. Pin all first- and third-party GitHub Actions to current stable releases by full commit SHA, with the target tag in a trailing comment. Updated: - actions/checkout: v4 -> v6.0.2 - actions/setup-python: v5 -> v6.2.0 --- .github/workflows/pr_check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml index f429748..257ba50 100644 --- a/.github/workflows/pr_check.yml +++ b/.github/workflows/pr_check.yml @@ -11,12 +11,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: python-version: '3.11'