Skip to content
This repository was archived by the owner on May 18, 2026. It is now read-only.
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Clone Repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Rust Toolchain (v${{ env.MIN_SUPPORTED_RUST_VERSION }})
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
skip_tests: false
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Build binary
uses: houseabsolute/actions-rust-cross@v1
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
container: clux/muslrust:stable
steps:
- name: Clone Repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Link to muscl Toolchain
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mdbook-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
env:
MDBOOK_VERSION: 0.4.36
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install mdBook
run: |
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mdbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
env:
MDBOOK_VERSION: 0.4.36
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install mdBook
run: |
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Build with mdBook
run: mdbook build ./docs/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: ./docs/book

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: agenthunt/conventional-commit-checker-action@v2.0.0
continue-on-error: true
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- { os: macos-14, target: aarch64-apple-darwin }
- { os: windows-2022, target: x86_64-pc-windows-msvc }
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- shell: bash
run: |
Expand Down
Loading