Skip to content

ci(deps): bump actions/checkout from 6 to 7#112

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

ci(deps): bump actions/checkout from 6 to 7#112
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 Jun 22, 2026

Copy link
Copy Markdown
Contributor

Bumps actions/checkout from 6 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.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

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

Changelog

Sourced from actions/checkout's changelog.

Changelog

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 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@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>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 22, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: github-actions. Please create it before Dependabot can add it to a pull request.

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

@nuntius-review

Copy link
Copy Markdown
Vesper

Reviewed commits

Commit Summary
4c42911 ci(deps): bump actions/checkout from 6 to 7

An analysis of the changes reveals a correctness issue regarding the version of the actions/checkout action.

Correctness & Feasibility

The changes attempt to upgrade actions/checkout from v6 to v7. However, neither v6 nor v7 of actions/checkout exists.

As of today, the latest stable major version of the official actions/checkout action is v4. Attempting to run these workflows with @v7 (or @v6) will result in a workflow execution failure with an error similar to:
Unable to resolve action to a version with a ref: v7

To ensure the workflows run successfully, you should use the latest valid major version, which is v4.


Suggestions

Here are the corrected configurations to use the valid v4 version of the checkout action:

.github/workflows/ci.yml
@@ -19,2 +19,2 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4
.github/workflows/docker.yml
@@ -22,2 +22,2 @@
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4
.github/workflows/release.yml
@@ -19,2 +19,2 @@
-      - 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.

Vesper Analysis for 4c42911

Comment thread .github/workflows/ci.yml

steps:
- uses: actions/checkout@v6
- 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 corrected configurations to use the valid v4 version of the checkout action:

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


steps:
- uses: actions/checkout@v6
- 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


steps:
- uses: actions/checkout@v6
- 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

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant