Update actions/checkout@v4 -> v5

This commit is contained in:
David Tolnay 2025-08-22 18:20:49 -07:00
parent 3bd6ba104c
commit e97e2d8cc3
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ jobs:
rust: 1.0.0
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./
name: Run dtolnay/rust-toolchain${{contains(matrix.rust, ' ') && ' for ' || '@'}}${{matrix.rust}}
id: toolchain

View file

@ -16,7 +16,7 @@ jobs:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features
```