From f08d7f6729b640333e31647a3d63f5c4e3a49e88 Mon Sep 17 00:00:00 2001 From: kevinch Date: Thu, 23 Jul 2026 15:06:03 -0300 Subject: [PATCH] ci: bump actions/cache v2 to v4 GitHub now hard-fails workflows using the deprecated actions/cache@v2, breaking the install job and all dependent jobs. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd1a904..41d3b46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - run: | yarn install --frozen-lockfile --check-files yarn --cwd react install --frozen-lockfile --check-files - - uses: actions/cache@v2 + - uses: actions/cache@v4 id: cache-build with: path: ./* @@ -30,7 +30,7 @@ jobs: needs: install steps: - name: Restore cache - uses: actions/cache@v2 + uses: actions/cache@v4 id: restore-build with: path: ./* @@ -42,7 +42,7 @@ jobs: needs: install steps: - name: Restore cache - uses: actions/cache@v2 + uses: actions/cache@v4 id: restore-build with: path: ./*