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.
This commit is contained in:
Yogthos 2026-06-10 12:31:44 -04:00
parent d0c605ac9d
commit da69d00b2c

View file

@ -16,7 +16,7 @@ jobs:
# spiking doesn't time out and drop total-pass below the baseline. # spiking doesn't time out and drop total-pass below the baseline.
JOLT_SUITE_TIMEOUT: "20" JOLT_SUITE_TIMEOUT: "20"
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
# Submodules: vendor/sci (SCI bootstrap/runtime tests) and # Submodules: vendor/sci (SCI bootstrap/runtime tests) and
# vendor/clojure-test-suite (the cross-dialect conformance battery, # vendor/clojure-test-suite (the cross-dialect conformance battery,
@ -25,7 +25,7 @@ jobs:
- name: Cache Janet build - name: Cache Janet build
id: cache-janet id: cache-janet
uses: actions/cache@v4 uses: actions/cache@v5
with: with:
path: /tmp/janet path: /tmp/janet
key: janet-${{ env.JANET_VERSION }}-${{ runner.os }} key: janet-${{ env.JANET_VERSION }}-${{ runner.os }}