chore(deps): update actions/checkout action to v5 #500

Merged
luke merged 1 commits from renovate/actions-checkout-5.x into main 2025-09-15 11:25:54 +02:00
Member

This PR contains the following updates:

Package Type Update Change
actions/checkout action major v4.3.0 -> v5.0.0

Release Notes

actions/checkout (actions/checkout)

v5.0.0

Compare Source

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

Full Changelog: https://github.com/actions/checkout/compare/v4...v5.0.0


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 | major | `v4.3.0` -> `v5.0.0` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v5.0.0`](https://github.com/actions/checkout/releases/tag/v5.0.0) [Compare Source](https://github.com/actions/checkout/compare/v4.3.0...v5.0.0) #### What's Changed - Update actions checkout to use node 24 by [@&#8203;salmanmkc](https://github.com/salmanmkc) in [#&#8203;2226](https://github.com/actions/checkout/pull/2226) - Prepare v5.0.0 release by [@&#8203;salmanmkc](https://github.com/salmanmkc) in [#&#8203;2238](https://github.com/actions/checkout/pull/2238) #### ⚠️ Minimum Compatible Runner Version **v2.327.1**\ [Release Notes](https://github.com/actions/runner/releases/tag/v2.327.1) Make sure your runner is updated to this version or newer to use this release. **Full Changelog**: <https://github.com/actions/checkout/compare/v4...v5.0.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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:eyJjcmVhdGVkSW5WZXIiOiI0MS42MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuODEuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsidHlwZS9kZXBlbmRlbmNpZXMiXX0=-->
renovate-bot added the
type
dependencies
label 2025-08-11 15:14:53 +02:00
renovate-bot added 1 commit 2025-08-11 15:14:54 +02:00
chore(deps): update actions/checkout action to v5
Some checks failed
CI / ci (pull_request) Failing after 3s
Enforce Conventional Commit PR Title / Validate PR Title (pull_request_target) Successful in 7s
48ff255d31
renovate-bot requested review from luke 2025-08-11 15:14:54 +02:00
Member

Decision: Accept

Change Score: 10/10

This change proposes an upgrade to GitHub Actions actions/checkout@v5.0.0 across three workflow files. This is a good practice to keep actions up-to-date and benefit from any performance improvements or bug fixes. I have no issues with this.

**Decision: Accept** **Change Score: 10/10** This change proposes an upgrade to GitHub Actions `actions/checkout@v5.0.0` across three workflow files. This is a good practice to keep actions up-to-date and benefit from any performance improvements or bug fixes. I have no issues with this.
renovate-bot force-pushed renovate/actions-checkout-5.x from 48ff255d31 to 2a397b2086 2025-08-12 22:13:21 +02:00 Compare
Member

Decision: Accept
Change Score: 10/10

This change updates the actions/checkout GitHub Action from version 4.3.0 to version 5.0.0 in multiple workflow files. This looks like a simple dependency update, and is perfectly acceptable.

**Decision: Accept** **Change Score: 10/10** This change updates the `actions/checkout` GitHub Action from version 4.3.0 to version 5.0.0 in multiple workflow files. This looks like a simple dependency update, and is perfectly acceptable.
renovate-bot force-pushed renovate/actions-checkout-5.x from 2a397b2086 to 3ee52b8582 2025-08-25 13:13:21 +02:00 Compare
Member

Decision: Accept
Change Score: 10/10

The proposed change updates the actions/checkout action to version 5.0.0 in multiple workflow files. This is a good practice to keep actions up-to-date with the latest features and security patches.

--- a/.gitea/workflows/ci.yml
+++ b/.gitea/workflows/ci.yml
@@ -12,7 +12,7 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - name: Check out repository code
-        uses: actions/checkout@v4.3.0
+        uses: actions/checkout@v5.0.0
         with:
           fetch-depth: 0
--- a/.gitea/workflows/release.yml
+++ b/.gitea/workflows/release.yml
@@ -61,7 +61,7 @@ jobs:
           REPO: ${{ gitea.repository }}
 
       - name: Check out repository
-        uses: actions/checkout@v4.3.0
+        uses: actions/checkout@v5.0.0
         with:
           fetch-depth: 0
           ref: ${{ needs.tag.outputs.tag_name }}
--- a/.gitea/workflows/security.yml
+++ b/.gitea/workflows/security.yml
@@ -27,7 +27,7 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - name: Checkout repo
-        uses: actions/checkout@v4.3.0
+        uses: actions/checkout@v5.0.0
**Decision: Accept** **Change Score: 10/10** The proposed change updates the `actions/checkout` action to version 5.0.0 in multiple workflow files. This is a good practice to keep actions up-to-date with the latest features and security patches. ```diff --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 ``` ```diff --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -61,7 +61,7 @@ jobs: REPO: ${{ gitea.repository }} - name: Check out repository - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 ref: ${{ needs.tag.outputs.tag_name }} ``` ```diff --- a/.gitea/workflows/security.yml +++ b/.gitea/workflows/security.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v5.0.0 ```
renovate-bot force-pushed renovate/actions-checkout-5.x from 3ee52b8582 to 32b58689f9 2025-09-09 15:20:10 +02:00 Compare
Member

Decision: Accept

Change Score: 10/10

This diff updates the actions/checkout action from version 4.3.0 to version 5.0.0 in three Gitea workflow files. This is a simple version update that appears safe. No problems detected.

**Decision: Accept** **Change Score: 10/10** This diff updates the `actions/checkout` action from version 4.3.0 to version 5.0.0 in three Gitea workflow files. This is a simple version update that appears safe. No problems detected.
renovate-bot force-pushed renovate/actions-checkout-5.x from 32b58689f9 to 723a8a8392 2025-09-12 19:48:55 +02:00 Compare
Member

Decision: Accept
Change Score: 10/10

This change updates the actions/checkout action in the CI, release, and security workflows from version 4.3.0 to version 5.0.0. This seems like a straightforward update to a commonly used GitHub Action. No problems detected.

**Decision: Accept** **Change Score: 10/10** This change updates the `actions/checkout` action in the CI, release, and security workflows from version 4.3.0 to version 5.0.0. This seems like a straightforward update to a commonly used GitHub Action. No problems detected.
renovate-bot added 2 commits 2025-09-15 11:20:36 +02:00
chore(deps): update actions/checkout action to v5
Some checks failed
Enforce Conventional Commit PR Title / Validate PR Title (pull_request_target) Failing after 1s
CI / ci (pull_request) Successful in 2m42s
723a8a8392
chore(deps): update actions/checkout action to v5
All checks were successful
Enforce Conventional Commit PR Title / Validate PR Title (pull_request_target) Successful in 8s
CI / ci (pull_request) Successful in 4m36s
d23ccfca33
Member

Decision: Accept
Change Score: 10/10

The proposed changes involve updating the actions/checkout action in three different workflow files (ci.yml, release.yml, and security.yml) from version v4.3.0 to v5.0.0. This looks like a standard version bump and does not appear to introduce any new logical errors or potential issues. Assuming the new version is stable, this is a good change.

**Decision: Accept** **Change Score: 10/10** The proposed changes involve updating the `actions/checkout` action in three different workflow files (`ci.yml`, `release.yml`, and `security.yml`) from version `v4.3.0` to `v5.0.0`. This looks like a standard version bump and does not appear to introduce any new logical errors or potential issues. Assuming the new version is stable, this is a good change.
luke merged commit 0360d12958 into main 2025-09-15 11:25:54 +02:00
luke deleted branch renovate/actions-checkout-5.x 2025-09-15 11:25:54 +02:00
Sign in to join this conversation.
No Reviewers
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: repos/webexmemebot#500
No description provided.