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: |