Skip to content

build(deps): bump actions/checkout from 4 to 7 - #4

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7
Open

build(deps): bump actions/checkout from 4 to 7#4
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 26, 2026

Copy link
Copy Markdown

Bumps actions/checkout from 4 to 7.

Release notes

Sourced from actions/checkout's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v6.0.3...v7.0.0

v6.1.0

What's Changed

https://github.blog/changelog/2026-06-18-safer-pull_request_target-defaults-for-github-actions-checkout/ for more details about this breaking change

Full Changelog: actions/checkout@v6.0.3...v6.1.0

v6.0.3

What's Changed

New Contributors

Full Changelog: actions/checkout@v6...v6.0.3

v6.0.2

What's Changed

Full Changelog: actions/checkout@v6.0.1...v6.0.2

v6.0.1

What's Changed

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.1

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4...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>
@dependabot @github

dependabot Bot commented on behalf of github Jul 26, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: ci, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@nuntius-review

Copy link
Copy Markdown
Nuntius

Reviewed commits

Commit Summary
1c050b0 build(deps): bump actions/checkout from 4 to 7

An analysis of the proposed changes reveals a critical correctness issue across all modified workflow files.

Correctness Issue: Non-existent Action Version

The changes attempt to upgrade actions/checkout from version v4 to v7 (e.g., actions/checkout@v7).

As of today, the latest major version of the official actions/checkout action is v4. There are no v5, v6, or v7 releases.

Attempting to run these workflows with @v7 will cause all GitHub Actions runs to fail immediately with a resolution error (e.g., Unable to resolve action "actions/checkout@v7", repository not found).

To fix this, the version should be reverted to v4 (or pinned to a specific commit SHA for enhanced security).


Suggestions

Here are the diffs to revert the version back to the correct and supported v4:

1. .github/workflows/benchmark.yml

.github/workflows/benchmark.yml
@@ -50,1 +50,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4

2. .github/workflows/ci.yml

.github/workflows/ci.yml
@@ -14,1 +14,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4
@@ -31,1 +31,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4
@@ -72,1 +72,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4

3. .github/workflows/release.yml

.github/workflows/release.yml
@@ -17,1 +17,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4
@@ -38,1 +38,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4
@@ -75,1 +75,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4

4. .github/workflows/security.yml

.github/workflows/security.yml
@@ -16,1 +16,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4
@@ -52,1 +52,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4
@@ -68,1 +68,1 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4

@nuntius-review nuntius-review Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nuntius Analysis for 1c050b0


steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are the diffs to revert the version back to the correct and supported v4:

Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

Comment thread .github/workflows/ci.yml
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    • uses: actions/checkout@v4
Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

Comment thread .github/workflows/ci.yml
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    • uses: actions/checkout@v4
Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

Comment thread .github/workflows/ci.yml

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    • uses: actions/checkout@v4
Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    • uses: actions/checkout@v4
Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    • uses: actions/checkout@v4
Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

needs: [build, docker]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    • uses: actions/checkout@v4
Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    • uses: actions/checkout@v4
Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    • uses: actions/checkout@v4
Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

security-events: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    • uses: actions/checkout@v4
Suggested change
- uses: actions/checkout@v7
- uses: actions/checkout@v4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants