From 1a3277ef46f31c2d99dfdb7d4889754a065cf6db Mon Sep 17 00:00:00 2001 From: christophe dervieux Date: Wed, 22 Apr 2026 17:22:15 +0200 Subject: [PATCH] Bump julia-actions/cache to v3 v2 is a composite action whose post-save and delete-old-caches steps don't run reliably, letting per-run julia caches (~250 MB each) accumulate on refs/heads/main until the repository hits its 10 GB cache cap. v3 is a JavaScript rewrite with a proper post hook. It also uses Node.js 24 directly, dropping the latent Node 20 exposure from v2's transitive actions/cache dependency. --- .github/workflows/test-smokes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-smokes.yml b/.github/workflows/test-smokes.yml index 961f8133ff..9195ec07ff 100644 --- a/.github/workflows/test-smokes.yml +++ b/.github/workflows/test-smokes.yml @@ -223,7 +223,7 @@ jobs: version: "1.11.7" - name: Load Julia packages from cache - uses: julia-actions/cache@v2 + uses: julia-actions/cache@v3 with: cache-name: julia-cache;workflow=${{ github.workflow }};job=${{ github.job }};julia=${{ steps.setup-julia.outputs.julia-version }}