diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index b79b3463d6..e537e692d6 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Clone recursively - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6a488355cf..141333d633 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -15,20 +15,20 @@ jobs: steps: - name: Clone recursively - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ./llvm key: llvm-14.0.0-ubuntu - name: Install LLVM and Clang - uses: KyleMayes/install-llvm-action@v1.5.2 + uses: KyleMayes/install-llvm-action@v1.6.0 with: version: "14.0.0" cached: ${{ steps.cache-llvm.outputs.cache-hit }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d9b9a444c7..9b3e92d572 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Clone recursively - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive @@ -30,14 +30,14 @@ jobs: - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ./llvm key: llvm-14.0.0-mac - name: Install LLVM and Clang - uses: KyleMayes/install-llvm-action@v1.5.2 + uses: KyleMayes/install-llvm-action@v1.6.0 with: version: "14.0.0" cached: ${{ steps.cache-llvm.outputs.cache-hit }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 010b2d7918..f4240dab23 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Clone recursively - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive @@ -45,7 +45,7 @@ jobs: cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{matrix.build-type}} -DTHORIN_BUILD_TESTING=ON -DPython3_ROOT_DIR=%PYTHON_PATH% - name: Install LLVM and Clang - uses: KyleMayes/install-llvm-action@v1.5.3 + uses: KyleMayes/install-llvm-action@v1.6.0 with: version: "14.0.0"