From 59afc73185d1bb0ce2241c5ddcf201199bdf6a78 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti <13schishti@gmail.com> Date: Sat, 7 Feb 2026 23:33:27 +0000 Subject: [PATCH] Upgrade GitHub Actions for Node 24 compatibility Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com> --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 35b8219a..dd15eccf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,12 +18,12 @@ jobs: os: [windows-latest, ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 fetch-tags: true - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: "Windows: cache bazelisk and zig-cache" if: runner.os == 'Windows' with: @@ -32,7 +32,7 @@ jobs: C:\Temp\zig-cache ~\AppData\Local\bazelisk' - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: "MacOS: cache bazelisk and zig-cache" if: runner.os == 'macOS' with: @@ -41,7 +41,7 @@ jobs: /var/tmp/zig-cache ~/Library/Caches/bazelisk - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: "Linux: cache bazelisk and zig-cache" if: runner.os == 'Linux' with: