From ef1f99b7a97208e58ce2c900d131c66dc4cd4e66 Mon Sep 17 00:00:00 2001 From: Evan Date: Sat, 27 Jun 2026 01:41:44 -0700 Subject: [PATCH] chore(ci): correct actions/cache pin comment to actual version v5.0.5 The pinned SHA 27d5ce7f107fe9357f9df03efb73ab90386fccae corresponds to actions/cache tag v5.0.5, not the floating v5 tag (which points to a different commit). Update the comment to the truthful version so it matches the pinned commit. Resolves code-scanning alert #2553 (zizmor ref-version-mismatch). Co-Authored-By: Claude Opus 4.8 --- .github/workflows/pre-commit.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 12dacf84e95..416115793b7 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -63,7 +63,7 @@ jobs: yarn install --immutable - name: Cache pre-commit environments - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ~/.cache/pre-commit key: pre-commit-v2-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('.pre-commit-config.yaml') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 593b77e60a2..c65074ae28e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,7 +56,7 @@ jobs: - name: Cache npm if: env.HAS_TAGS - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} @@ -70,7 +70,7 @@ jobs: run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - name: Cache npm if: env.HAS_TAGS - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 id: npm-cache # use this to check for `cache-hit` (`steps.npm-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.npm-cache-dir-path.outputs.dir }}