Skip to content

Commit cccc71f

Browse files
authored
Merge pull request #27 from PyO3/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 1b82df0 + 3d7b833 commit cccc71f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Check
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- run: cargo check --all-features
1616

1717
test:
@@ -21,31 +21,31 @@ jobs:
2121
matrix:
2222
os: [ubuntu-latest, macos-latest, windows-latest]
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- run: cargo test
2626
- run: cargo test --all-features
2727

2828
test-direct-minimal-versions:
2929
name: Test Direct Minimal Versions
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
- run: rustup toolchain add nightly
3434
- run: cargo +nightly update -Z minimal-versions
3535
- run: cargo +stable test
3636

3737
clippy:
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
- run: rustup component add clippy
4242
- run: cargo clippy --all-features --locked -- -D warnings
4343

4444
fmt:
4545
name: Format
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
- run: rustup component add rustfmt
5050
- run: cargo fmt --all -- --check
5151
- run: npx prettier --check "**/*.md"

0 commit comments

Comments
 (0)