repository template for Rust projects

deps(gha): bump actions/checkout from 5 to 6 in the actions group (#46)

authored by

dependabot[bot] and committed by
GitHub
933029dd 8843d3a8

+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@v5 28 + uses: actions/checkout@v6 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@v5 31 + uses: actions/checkout@v6 32 32 - name: Install Rust 33 33 run: | 34 34 rustup set profile minimal
+4 -4
.github/workflows/main.yml
··· 51 51 52 52 steps: 53 53 - name: Checkout repository 54 - uses: actions/checkout@v5 54 + uses: actions/checkout@v6 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@v5 78 + uses: actions/checkout@v6 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@v5 118 + uses: actions/checkout@v6 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@v5 155 + uses: actions/checkout@v6 156 156 - name: Install Rust 157 157 run: | 158 158 rustup set profile minimal
+1 -1
.github/workflows/release.yml
··· 15 15 id-token: write 16 16 steps: 17 17 - name: Checkout repository 18 - uses: actions/checkout@v5 18 + uses: actions/checkout@v6 19 19 - name: Install Rust 20 20 run: | 21 21 rustup set profile minimal