diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d3d8ab..79b4f07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: name: cargo check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it with: toolchain: "1.85" @@ -25,7 +25,7 @@ jobs: name: cargo fmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it with: toolchain: "1.85" @@ -36,7 +36,7 @@ jobs: name: cargo test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it with: toolchain: "1.85" @@ -47,7 +47,7 @@ jobs: name: cargo clippy runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it with: toolchain: "1.85" @@ -59,7 +59,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@stable with: components: clippy @@ -69,7 +69,7 @@ jobs: name: minimal direct dependencies runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@nightly with: components: clippy