From 97e40a8c15fc882941146f677e8ed397448f0c21 Mon Sep 17 00:00:00 2001 From: AlbinBernhardssonARM Date: Tue, 21 Apr 2026 13:49:28 +0200 Subject: [PATCH] Update GitHub Actions This is to update from Node.js 20 to Node.js 24, as GitHub has deprecated support and will remove Node.js 20 later this year. --- .github/workflows/android-clang.yaml | 4 ++-- .github/workflows/linux-clang.yaml | 4 ++-- .github/workflows/linux-gcc.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/android-clang.yaml b/.github/workflows/android-clang.yaml index 2358934..b56e720 100644 --- a/.github/workflows/android-clang.yaml +++ b/.github/workflows/android-clang.yaml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up JDK 21 environment run: | @@ -32,7 +32,7 @@ jobs: make - name: Upload binaries - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: libgpu-linux-x86 path: | diff --git a/.github/workflows/linux-clang.yaml b/.github/workflows/linux-clang.yaml index 42af8ec..fbdc356 100644 --- a/.github/workflows/linux-clang.yaml +++ b/.github/workflows/linux-clang.yaml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build with Clang run: | @@ -22,7 +22,7 @@ jobs: make - name: Upload binaries - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: libgpu-linux-x86 path: | diff --git a/.github/workflows/linux-gcc.yaml b/.github/workflows/linux-gcc.yaml index a9408c3..650327b 100644 --- a/.github/workflows/linux-gcc.yaml +++ b/.github/workflows/linux-gcc.yaml @@ -12,7 +12,7 @@ jobs: steps: - name: Git checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build with GCC run: | @@ -22,7 +22,7 @@ jobs: make - name: Upload binaries - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: libgpu-linux-x86 path: |