From da69d00b2ca9722380bc95b187336daae9193dda Mon Sep 17 00:00:00 2001 From: Yogthos Date: Wed, 10 Jun 2026 12:31:44 -0400 Subject: [PATCH] ci: bump checkout/cache actions to v5 (Node 24) GitHub forces Node 24 for JavaScript actions starting June 16 2026; the v4 actions run on deprecated Node 20. v5 of both run on Node 24. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0e712bc..fd95e2c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: # spiking doesn't time out and drop total-pass below the baseline. JOLT_SUITE_TIMEOUT: "20" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: # Submodules: vendor/sci (SCI bootstrap/runtime tests) and # vendor/clojure-test-suite (the cross-dialect conformance battery, @@ -25,7 +25,7 @@ jobs: - name: Cache Janet build id: cache-janet - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/janet key: janet-${{ env.JANET_VERSION }}-${{ runner.os }}