diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14242c6..39b603e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,13 +39,13 @@ jobs: MAKE: ${{ matrix.make_bin }} steps: - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.9.1 + uses: styfle/cancel-workflow-action@0.13.0 with: all_but_latest: true access_token: ${{ github.token }} - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -58,7 +58,7 @@ jobs: - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: | C:/Program Files/LLVM @@ -67,7 +67,7 @@ jobs: - name: Install LLVM and Clang id: install-llvm - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: 15 cached: ${{ steps.cache-llvm.outputs.cache-hit }} diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 223e46a..b08c032 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -12,13 +12,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.9.1 + uses: styfle/cancel-workflow-action@0.13.0 with: all_but_latest: true access_token: ${{ github.token }} - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -32,14 +32,14 @@ jobs: - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: | C:/Program Files/LLVM ./llvm key: llvm-14 - name: Install LLVM and Clang - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: "14" cached: ${{ steps.cache-llvm.outputs.cache-hit }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d84b3b6..dfe33f0 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -28,7 +28,7 @@ jobs: - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: | C:/Program Files/LLVM @@ -37,7 +37,7 @@ jobs: - name: Install LLVM and Clang id: install-llvm - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: 15 cached: ${{ steps.cache-llvm.outputs.cache-hit }} @@ -62,7 +62,7 @@ jobs: run: cargo +nightly doc --verbose --no-deps --lib --bins --workspace --document-private-items - name: Deploy - uses: JamesIves/github-pages-deploy-action@4.1.8 + uses: JamesIves/github-pages-deploy-action@v4.8.0 with: token: ${{ secrets.GITHUB_TOKEN }} branch: gh-pages diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 3f3f4a1..4527d39 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -13,13 +13,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.9.1 + uses: styfle/cancel-workflow-action@0.13.0 with: all_but_latest: true access_token: ${{ github.token }} - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0