|
12 | 12 | name: Lint |
13 | 13 | runs-on: ubuntu-latest |
14 | 14 | steps: |
15 | | - - uses: actions/checkout@v4 |
| 15 | + - uses: actions/checkout@v6 |
16 | 16 | - uses: dtolnay/rust-toolchain@stable |
17 | 17 | with: |
18 | 18 | toolchain: stable |
|
24 | 24 | name: Compile |
25 | 25 | runs-on: ubuntu-latest |
26 | 26 | steps: |
27 | | - - uses: actions/checkout@v4 |
| 27 | + - uses: actions/checkout@v6 |
28 | 28 | - uses: dtolnay/rust-toolchain@stable |
29 | 29 | with: |
30 | 30 | toolchain: stable |
|
45 | 45 | runs-on: ${{ matrix.os }} |
46 | 46 | needs: [compile] |
47 | 47 | steps: |
48 | | - - uses: actions/checkout@v4 |
| 48 | + - uses: actions/checkout@v6 |
49 | 49 | - uses: dtolnay/rust-toolchain@stable |
50 | 50 | with: |
51 | 51 | toolchain: ${{ matrix.toolchain }} |
|
60 | 60 | name: Generate Documentation |
61 | 61 | runs-on: ubuntu-latest |
62 | 62 | steps: |
63 | | - - uses: actions/checkout@v4 |
| 63 | + - uses: actions/checkout@v6 |
64 | 64 | - uses: dtolnay/rust-toolchain@stable |
65 | 65 | with: |
66 | 66 | toolchain: stable |
|
70 | 70 | name: Spell Check Documentation |
71 | 71 | runs-on: ubuntu-latest |
72 | 72 | steps: |
73 | | - - uses: actions/checkout@v4 |
| 73 | + - uses: actions/checkout@v6 |
74 | 74 | - name: Install Codespell |
75 | 75 | run: pip install codespell |
76 | 76 | - name: Run Codespell |
|
80 | 80 | name: Generate Copyright Notes |
81 | 81 | runs-on: ubuntu-latest |
82 | 82 | steps: |
83 | | - - uses: actions/checkout@v4 |
| 83 | + - uses: actions/checkout@v6 |
84 | 84 | - name: Install Cargo License |
85 | 85 | run: cargo install cargo-license |
86 | 86 | - name: Generate License Report |
|
91 | 91 | runs-on: ubuntu-latest |
92 | 92 | if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' |
93 | 93 | steps: |
94 | | - - uses: actions/checkout@v4 |
| 94 | + - uses: actions/checkout@v6 |
95 | 95 | - name: Install Cargo Audit |
96 | 96 | run: cargo install cargo-audit |
97 | 97 | - name: Run Cargo Audit |
|
0 commit comments