repository template for Rust projects

deps(gha): bump actions/checkout from 4 to 5 (#40)

authored by

dependabot[bot] and committed by
GitHub
e0904c38 85afc30b

+7 -7
+1 -1
.github/workflows/audit.yml
··· 25 25 runs-on: ubuntu-latest 26 26 steps: 27 27 - name: Checkout repository 28 - uses: actions/checkout@v4 28 + uses: actions/checkout@v5 29 29 - name: Check if Cargo.lock file exists 30 30 run: | 31 31 if [ -f "Cargo.lock" ]; then
+1 -1
.github/workflows/docs.yml
··· 28 28 runs-on: ubuntu-latest 29 29 steps: 30 30 - name: Checkout repository 31 - uses: actions/checkout@v4 31 + uses: actions/checkout@v5 32 32 - name: Install Rust 33 33 run: | 34 34 rustup set profile minimal
+5 -5
.github/workflows/main.yml
··· 51 51 52 52 steps: 53 53 - name: Checkout repository 54 - uses: actions/checkout@v4 54 + uses: actions/checkout@v5 55 55 - name: Install Rust (${{ matrix.toolchain }}) 56 56 run: | 57 57 rustup set profile minimal ··· 75 75 76 76 steps: 77 77 - name: Checkout repository 78 - uses: actions/checkout@v4 78 + uses: actions/checkout@v5 79 79 # `--doctests` flag for `cargo llvm-cov` requires nightly channel 80 80 # see: https://github.com/taiki-e/cargo-llvm-cov/issues/2 81 81 - name: Install Rust (Nightly) ··· 115 115 116 116 steps: 117 117 - name: Checkout repository 118 - uses: actions/checkout@v4 118 + uses: actions/checkout@v5 119 119 - name: Install Rust (nightly) 120 120 run: | 121 121 rustup set profile minimal ··· 152 152 cmd-check: cargo fmt --all -- --check 153 153 steps: 154 154 - name: Checkout repository 155 - uses: actions/checkout@v4 155 + uses: actions/checkout@v5 156 156 - name: Install Rust 157 157 run: | 158 158 rustup set profile minimal ··· 181 181 - crate: my_crate 182 182 steps: 183 183 - name: Checkout repository 184 - uses: actions/checkout@v4 184 + uses: actions/checkout@v5 185 185 - name: Install Rust 186 186 run: | 187 187 rustup set profile minimal