Skip to content
Merged
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/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install toolchain
run: |
rustup toolchain install stable --no-self-update --profile minimal --component llvm-tools-preview
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install toolchain
run: |
rustup toolchain install stable --no-self-update --profile minimal
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: taiki-e/install-action@cargo-hack
- name: Create Cargo.lock for caching
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: |
rustup toolchain install stable --no-self-update --profile minimal
rustup toolchain install nightly --no-self-update --profile minimal
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: cargo update -Zminimal-versions
run: cargo +nightly -Zminimal-versions update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
rustup toolchain install nightly --no-self-update --profile minimal
rustup override set 1.63
rustup default 1.63
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: cargo update -Zminimal-versions
run: cargo +nightly -Zminimal-versions update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/os-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install toolchain
run: |
rustup toolchain install stable --no-self-update --profile minimal
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Create Cargo.lock for caching
run: cargo update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install Rust toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: shellcheck
run: shellcheck *.sh
4 changes: 2 additions & 2 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
rustup toolchain install ${{ matrix.toolchain }} --no-self-update --profile minimal --component rustfmt,clippy
rustup override set ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Create Cargo.lock for caching
run: cargo update
Expand All @@ -56,7 +56,7 @@ jobs:
rustup toolchain install nightly --no-self-update --profile minimal
rustup override set nightly
rustup default nightly
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Create Cargo.lock for caching
run: cargo update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
rustup toolchain install ${{ matrix.toolchain }} --no-self-update --profile minimal
rustup override set ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Create Cargo.lock for caching
run: cargo update
Expand Down
Loading