Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -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
Expand All @@ -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 }}
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading