From d34d2c80cff4b4dd88b96cca76ae627e74192435 Mon Sep 17 00:00:00 2001 From: Yuki Fukuma Date: Thu, 7 May 2026 21:13:12 +0900 Subject: [PATCH] Update actions to use NodeJS 24 --- .github/workflows/cache.yml | 4 ++-- .github/workflows/debug.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 7b0c5d6..89b09f9 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -20,11 +20,11 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | C:/Program Files/LLVM diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 9dbc1a0..90a98a1 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install LLVM and Clang uses: ./ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4484fbb..8f0c64c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Arch (Ubuntu / macOS) if: matrix.os != 'windows-latest'