A post-modern development environment.
0

Configure Feed

Select the types of activity you want to include in your feed.

build(deps): bump actions/checkout from 6 to 7 (#15926)

Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

+9 -9
+4 -4
.github/workflows/build.yml
··· 27 27 if: github.repository == 'helix-editor/helix' || github.event_name != 'schedule' 28 28 steps: 29 29 - name: Checkout sources 30 - uses: actions/checkout@v6 30 + uses: actions/checkout@v7 31 31 32 32 - uses: ./.github/actions/rust-setup 33 33 with: ··· 47 47 HELIX_LOG_LEVEL: info 48 48 steps: 49 49 - name: Checkout sources 50 - uses: actions/checkout@v6 50 + uses: actions/checkout@v7 51 51 52 52 - uses: ./.github/actions/rust-setup 53 53 with: ··· 72 72 if: github.repository == 'helix-editor/helix' || github.event_name != 'schedule' 73 73 steps: 74 74 - name: Checkout sources 75 - uses: actions/checkout@v6 75 + uses: actions/checkout@v7 76 76 77 77 - uses: ./.github/actions/rust-setup 78 78 with: ··· 97 97 if: github.repository == 'helix-editor/helix' || github.event_name != 'schedule' 98 98 steps: 99 99 - name: Checkout sources 100 - uses: actions/checkout@v6 100 + uses: actions/checkout@v7 101 101 102 102 - uses: ./.github/actions/rust-setup 103 103 with:
+1 -1
.github/workflows/cachix.yml
··· 17 17 os: [ubuntu-latest, macos-latest] 18 18 steps: 19 19 - name: Checkout sources 20 - uses: actions/checkout@v6 20 + uses: actions/checkout@v7 21 21 22 22 - name: Install nix 23 23 uses: cachix/install-nix-action@8aa03977d8d733052d78f4e008a241fd1dbf36b3 # v31.10.6
+1 -1
.github/workflows/gh-pages.yml
··· 20 20 permissions: 21 21 contents: write # peaceiris/actions-gh-pages pushes to the gh-pages branch 22 22 steps: 23 - - uses: actions/checkout@v6 23 + - uses: actions/checkout@v7 24 24 25 25 - name: Setup mdBook 26 26 uses: peaceiris/actions-mdbook@ee69d230fe19748b7abf22df32acaa93833fad08 # v2.0.0
+3 -3
.github/workflows/release.yml
··· 30 30 runs-on: ubuntu-latest 31 31 steps: 32 32 - name: Checkout sources 33 - uses: actions/checkout@v6 33 + uses: actions/checkout@v7 34 34 35 35 - name: Install stable toolchain 36 36 uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # master ··· 92 92 93 93 steps: 94 94 - name: Checkout sources 95 - uses: actions/checkout@v6 95 + uses: actions/checkout@v7 96 96 97 97 - name: Download grammars 98 98 uses: actions/download-artifact@v8 ··· 215 215 attestations: write # write provenance to the attestations API 216 216 steps: 217 217 - name: Checkout sources 218 - uses: actions/checkout@v6 218 + uses: actions/checkout@v7 219 219 220 220 - uses: actions/download-artifact@v8 221 221