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
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Check if Cargo.lock file exists
run: |
if [ -f "Cargo.lock" ]; then
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Rust
run: |
rustup set profile minimal
Expand All @@ -41,14 +41,14 @@ jobs:
env:
RUSTDOCFLAGS: -D warnings --cfg docsrs -Zunstable-options --enable-index-page --show-coverage
- name: Setup Pages
uses: actions/configure-pages@v5
uses: actions/configure-pages@v6
# https://github.com/actions/deploy-pages/issues/188#issuecomment-1597651901
- name: Remove build files in /target/doc with incorrect permissions
run: rm -f ./target/doc/.lock
- name: Print build files in /target/doc
run: find ./target/doc -exec echo {} \;
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v5
with:
path: ./target/doc
deploy:
Expand All @@ -64,4 +64,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Rust (${{ matrix.toolchain }})
run: |
rustup set profile minimal
Expand All @@ -75,7 +75,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
# `--doctests` flag for `cargo llvm-cov` requires nightly channel
# see: https://github.com/taiki-e/cargo-llvm-cov/issues/2
- name: Install Rust (Nightly)
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Rust (nightly)
run: |
rustup set profile minimal
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
cmd-check: cargo fmt --all -- --check
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Rust
run: |
rustup set profile minimal
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Rust
run: |
rustup set profile minimal
Expand Down
Loading