|
12 | 12 | runs-on: ubuntu-latest |
13 | 13 | steps: |
14 | 14 | - name: Checkout repository |
15 | | - uses: actions/checkout@v3 |
| 15 | + uses: actions/checkout@v4 |
16 | 16 | - name: Check formatting |
17 | 17 | run: cargo fmt --all -- --check |
18 | 18 |
|
|
23 | 23 | runs-on: ubuntu-latest |
24 | 24 | steps: |
25 | 25 | - name: Checkout repository |
26 | | - uses: actions/checkout@v3 |
| 26 | + uses: actions/checkout@v4 |
27 | 27 | - name: Build crate (Static Output) |
28 | 28 | run: cargo build --verbose --features=static_output,search |
29 | 29 | - name: Build crate (Tokio) |
|
37 | 37 | runs-on: ubuntu-latest |
38 | 38 | steps: |
39 | 39 | - name: Checkout repository |
40 | | - uses: actions/checkout@v3 |
| 40 | + uses: actions/checkout@v4 |
41 | 41 | # This step helps separate buildtime and runtime errors in tests. |
42 | 42 | # Do not build or run doc tests |
43 | 43 | - name: Build tests (Static Output) |
|
61 | 61 | runs-on: ubuntu-latest |
62 | 62 | steps: |
63 | 63 | - name: Checkout repository |
64 | | - uses: actions/checkout@v3 |
| 64 | + uses: actions/checkout@v4 |
65 | 65 | # No terminal available in CI, only check the examples. |
66 | 66 | - name: Tokio |
67 | 67 | run: cargo check --example=dyn_tokio --features=dynamic_output |
|
83 | 83 | runs-on: ubuntu-latest |
84 | 84 | steps: |
85 | 85 | - name: Checkout repository |
86 | | - uses: actions/checkout@v3 |
| 86 | + uses: actions/checkout@v4 |
87 | 87 | - name: Run documentation tests |
88 | 88 | run: cargo test --doc --all-features |
89 | 89 |
|
|
92 | 92 | runs-on: ubuntu-latest |
93 | 93 | steps: |
94 | 94 | - uses: actions/checkout@v3 |
95 | | - - uses: dtolnay/rust-toolchain |
| 95 | + - uses: dtolnay/rust-toolchain@stable |
96 | 96 | with: |
97 | 97 | toolchain: stable |
98 | 98 | profile: minimal |
|
0 commit comments