keyboard stuff
0
fork

Configure Feed

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

Bump actions/checkout from 5 to 6 (#25807)

Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [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/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '6'
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>

authored by

dependabot[bot]
dependabot[bot]
and committed by
GitHub
81cc69c2 0fde9c9c

+17 -17
+1 -1
.github/workflows/api.yml
··· 25 25 if: github.repository == 'qmk/qmk_firmware' 26 26 27 27 steps: 28 - - uses: actions/checkout@v5 28 + - uses: actions/checkout@v6 29 29 with: 30 30 fetch-depth: 1 31 31 persist-credentials: false
+1 -1
.github/workflows/auto_tag.yml
··· 28 28 if: github.repository == 'qmk/qmk_firmware' 29 29 30 30 steps: 31 - - uses: actions/checkout@v5 31 + - uses: actions/checkout@v6 32 32 with: 33 33 fetch-depth: 0 34 34
+2 -2
.github/workflows/ci_build_major_branch.yml
··· 45 45 git config --global --add safe.directory '*' 46 46 47 47 - name: Checkout QMK Firmware 48 - uses: actions/checkout@v5 48 + uses: actions/checkout@v6 49 49 50 50 - name: Determine concurrency 51 51 id: generate_slice_length ··· 82 82 git config --global --add safe.directory '*' 83 83 84 84 - name: Checkout QMK Firmware 85 - uses: actions/checkout@v5 85 + uses: actions/checkout@v6 86 86 with: 87 87 fetch-depth: 0 88 88
+3 -3
.github/workflows/ci_build_major_branch_keymap.yml
··· 37 37 git config --global --add safe.directory '*' 38 38 39 39 - name: Checkout QMK Firmware 40 - uses: actions/checkout@v5 40 + uses: actions/checkout@v6 41 41 42 42 - name: Generate build targets 43 43 id: generate_targets ··· 89 89 git config --global --add safe.directory '*' 90 90 91 91 - name: Checkout QMK Firmware 92 - uses: actions/checkout@v5 92 + uses: actions/checkout@v6 93 93 94 94 - name: Get target definitions 95 95 uses: actions/download-artifact@v6 ··· 136 136 137 137 steps: 138 138 - name: Checkout QMK Firmware 139 - uses: actions/checkout@v5 139 + uses: actions/checkout@v6 140 140 141 141 - name: Download firmwares 142 142 uses: actions/download-artifact@v6
+1 -1
.github/workflows/cli.yml
··· 24 24 - name: Disable safe.directory check 25 25 run : git config --global --add safe.directory '*' 26 26 27 - - uses: actions/checkout@v5 27 + - uses: actions/checkout@v6 28 28 with: 29 29 submodules: recursive 30 30
+1 -1
.github/workflows/develop_update.yml
··· 15 15 if: github.repository == 'qmk/qmk_firmware' 16 16 17 17 steps: 18 - - uses: actions/checkout@v5 18 + - uses: actions/checkout@v6 19 19 with: 20 20 token: ${{ secrets.QMK_BOT_TOKEN }} 21 21 fetch-depth: 0
+1 -1
.github/workflows/docs.yml
··· 30 30 container: ghcr.io/qmk/qmk_cli 31 31 32 32 steps: 33 - - uses: actions/checkout@v5 33 + - uses: actions/checkout@v6 34 34 with: 35 35 fetch-depth: 1 36 36
+1 -1
.github/workflows/feature_branch_update.yml
··· 21 21 - riot 22 22 23 23 steps: 24 - - uses: actions/checkout@v5 24 + - uses: actions/checkout@v6 25 25 with: 26 26 token: ${{ secrets.QMK_BOT_TOKEN }} 27 27 fetch-depth: 0
+1 -1
.github/workflows/format.yml
··· 26 26 - name: Disable safe.directory check 27 27 run : git config --global --add safe.directory '*' 28 28 29 - - uses: actions/checkout@v5 29 + - uses: actions/checkout@v6 30 30 with: 31 31 fetch-depth: 0 32 32
+1 -1
.github/workflows/format_push.yml
··· 19 19 - name: Disable safe.directory check 20 20 run : git config --global --add safe.directory '*' 21 21 22 - - uses: actions/checkout@v5 22 + - uses: actions/checkout@v6 23 23 with: 24 24 fetch-depth: 0 25 25
+1 -1
.github/workflows/lint.yml
··· 18 18 - name: Disable safe.directory check 19 19 run : git config --global --add safe.directory '*' 20 20 21 - - uses: actions/checkout@v5 21 + - uses: actions/checkout@v6 22 22 with: 23 23 fetch-depth: 0 24 24
+1 -1
.github/workflows/regen.yml
··· 19 19 - name: Disable safe.directory check 20 20 run : git config --global --add safe.directory '*' 21 21 22 - - uses: actions/checkout@v5 22 + - uses: actions/checkout@v6 23 23 24 24 - name: Run qmk generators 25 25 run: |
+1 -1
.github/workflows/regen_push.yml
··· 19 19 - name: Disable safe.directory check 20 20 run : git config --global --add safe.directory '*' 21 21 22 - - uses: actions/checkout@v5 22 + - uses: actions/checkout@v6 23 23 24 24 - name: Run qmk generators 25 25 run: |
+1 -1
.github/workflows/unit_test.yml
··· 26 26 container: ghcr.io/qmk/qmk_cli 27 27 28 28 steps: 29 - - uses: actions/checkout@v5 29 + - uses: actions/checkout@v6 30 30 with: 31 31 submodules: recursive 32 32 - name: Install dependencies