From 7bb0ccc7842577243edc3b8d61f75bf498551a7a Mon Sep 17 00:00:00 2001 From: andri lim Date: Tue, 27 Feb 2024 19:55:11 +0700 Subject: [PATCH] Upgrade github actions to v4 (#149) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f1e034..18fa79e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: runs-on: ${{ matrix.builder }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set GCC 10 as default compiler (Linux) if: runner.os == 'Linux' && matrix.target.cpu != 'i386' @@ -74,7 +74,7 @@ jobs: - name: Restore llvm-mingw (Windows) from cache if: runner.os == 'Windows' id: windows-mingw-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: external/mingw-${{ matrix.target.cpu }} key: 'mingw-llvm-17-${{ matrix.target.cpu }}' @@ -100,7 +100,7 @@ jobs: - name: Restore Nim DLLs dependencies (Windows) from cache if: runner.os == 'Windows' id: windows-dlls-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: external/dlls key: 'dlls'