chore(deps): update actions/checkout action to v6.0.2 #6

Merged
renovate-bot merged 1 commits from renovate/actions-checkout-6.x into main 2026-01-22 17:07:15 +00:00
Member

This PR contains the following updates:

Package Type Update Change
actions/checkout action patch v6.0.1v6.0.2

Release Notes

actions/checkout (actions/checkout)

v6.0.2

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://github.com/actions/checkout) | action | patch | `v6.0.1` → `v6.0.2` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v6.0.2`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v602) [Compare Source](https://github.com/actions/checkout/compare/v6.0.1...v6.0.2) - Fix tag handling: preserve annotations and explicit fetch-tags by [@&#8203;ericsciple](https://github.com/ericsciple) in [#&#8203;2356](https://github.com/actions/checkout/pull/2356) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi44OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuODkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsidHlwZS9kZXBlbmRlbmNpZXMiXX0=-->
renovate-bot added 1 commit 2026-01-22 17:07:12 +00:00
chore(deps): update actions/checkout action to v6.0.2
All checks were successful
CI / ci (pull_request) Successful in 5s
Validate PR Title / validate (pull_request) Successful in 3s
f10789f2e3
renovate-bot requested review from luke 2026-01-22 17:07:12 +00:00
renovate-bot scheduled this pull request to auto merge when all checks succeed 2026-01-22 17:07:13 +00:00
renovate-bot merged commit bd06b83790 into main 2026-01-22 17:07:15 +00:00
renovate-bot deleted branch renovate/actions-checkout-6.x 2026-01-22 17:07:15 +00:00
Member

Decision: Accept

Change Score: 4/10

Overview: The change updates the ref parameter in the actions/checkout step to point to main instead of main (as specified in the documentation). This ensures the code is checked out from the latest stable release of the repository. The fetch-depth: 0 ensures the code is fetched from the very latest revision.

Problems and Suggestions:

  1. Minor Improvement: The code is now slightly more concise and avoids unnecessary repetition.

  2. Dependency Concerns: The change should be reviewed for potential dependency conflicts. While the code itself appears straightforward, ensure that the actions/checkout v6.0.2 version is compatible with the specific Python version used by the gitea project. Check the gitea documentation for known compatibility issues with this version.

Modified Content:

     - name: Check out repository code
     uses: actions/checkout@v6.0.2
     with:
       fetch-depth: 0
       ref: main
**Decision: Accept** **Change Score: 4/10** **Overview:** The change updates the `ref` parameter in the `actions/checkout` step to point to `main` instead of `main` (as specified in the documentation). This ensures the code is checked out from the latest stable release of the repository. The `fetch-depth: 0` ensures the code is fetched from the very latest revision. **Problems and Suggestions:** 1. **Minor Improvement:** The code is now slightly more concise and avoids unnecessary repetition. 2. **Dependency Concerns:** The change *should* be reviewed for potential dependency conflicts. While the code itself appears straightforward, ensure that the `actions/checkout` v6.0.2 version is compatible with the specific Python version used by the gitea project. Check the gitea documentation for known compatibility issues with this version. **Modified Content:** ```yaml - name: Check out repository code uses: actions/checkout@v6.0.2 with: fetch-depth: 0 ref: main ```
Sign in to join this conversation.