Skip to content

ci(deps): bump actions/checkout from 6 to 7 in the github-actions group - #183

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-actions-640176b5ab
Closed

ci(deps): bump actions/checkout from 6 to 7 in the github-actions group#183
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-actions-640176b5ab

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Contributor

Bumps the github-actions group with 1 update: actions/checkout.

Updates 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout).


Updates `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
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@nuntius-review

Copy link
Copy Markdown
Contributor
Vesper

Reviewed commits

Commit Summary
fdf5f66 ci(deps): bump actions/checkout from 6 to 7 in the github-actions group

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

Correctness Issue: Non-existent Action Version (actions/checkout@v7)

The changes attempt to upgrade the checkout action to actions/checkout@v7. However, as of today, the official actions/checkout repository has only been released up to major version v4 (with v4.2.2 being the latest stable release).

There are no v5, v6, or v7 releases of this action. Attempting to run these workflows will result in immediate failures with an error similar to:

Action Security Error: Action actions/checkout@v7 not found

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


Suggestions

Below are the corrected configurations for the visible parts of the diff:

.github/workflows/analysis.yml
@@ -22,3 +22,3 @@
     steps:
       - name: Checkout
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4
.github/workflows/ci.yml
@@ -26,3 +26,3 @@
     steps:
       - name: Checkout code
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4
@@ -64,3 +64,3 @@
     steps:
       - name: Checkout code
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4
@@ -93,3 +93,3 @@
     steps:
       - name: Checkout code
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4
@@ -126,3 +126,3 @@
     steps:
       - name: Checkout code
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4
.github/workflows/dependencies.yml
@@ -30,3 +30,3 @@
     steps:
       - name: Checkout code
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4
.github/workflows/deploy-site.yml
@@ -27,3 +27,3 @@
     steps:
       - name: Checkout
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4
.github/workflows/e2e.yml
@@ -24,3 +24,3 @@
     steps:
       - name: Checkout code
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4
.github/workflows/fix-changelog.yml
@@ -28,3 +28,3 @@
 
-      - uses: actions/checkout@v7
+      - uses: actions/checkout@v4
.github/workflows/labeler.yml
@@ -23,3 +23,3 @@
     steps:
       - name: Checkout
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4
.github/workflows/manual.yml
@@ -34,3 +34,3 @@
     steps:
       - name: Checkout code
-        uses: actions/checkout@v7
+        uses: actions/checkout@v4

(Note: Please apply the same change to any other files not fully shown in the diff, such as publish-gem.yml and vesper.yml.)

@nuntius-review nuntius-review Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Vesper Analysis for fdf5f66

uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Node

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Below are the corrected configurations for the visible parts of the diff:

Suggested change
- name: Set up Node
uses: actions/checkout@v4

Comment thread .github/workflows/ci.yml
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Ruby

Copy link
Copy Markdown
Contributor

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
- name: Set up Ruby
uses: actions/checkout@v4

Comment thread .github/workflows/ci.yml
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Ruby

Copy link
Copy Markdown
Contributor

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
- name: Set up Ruby
uses: actions/checkout@v4

Comment thread .github/workflows/ci.yml
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Ruby

Copy link
Copy Markdown
Contributor

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
- name: Set up Ruby
uses: actions/checkout@v4

Comment thread .github/workflows/ci.yml
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Ruby

Copy link
Copy Markdown
Contributor

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
- name: Set up Ruby
uses: actions/checkout@v4

uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Upload artifact

Copy link
Copy Markdown
Contributor

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
- name: Upload artifact
uses: actions/checkout@v4

Comment thread .github/workflows/e2e.yml
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Ruby

Copy link
Copy Markdown
Contributor

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
- name: Set up Ruby
uses: actions/checkout@v4


- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:

Copy link
Copy Markdown
Contributor

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
with:
- uses: actions/checkout@v4

uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Auto-label issues

Copy link
Copy Markdown
Contributor

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
- name: Auto-label issues
uses: actions/checkout@v4

uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Ruby

Copy link
Copy Markdown
Contributor

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
- name: Set up Ruby
uses: actions/checkout@v4

@dependabot @github

dependabot Bot commented on behalf of github Jul 18, 2026

Copy link
Copy Markdown
Contributor Author

Looks like actions/checkout is updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 18, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/github-actions-640176b5ab branch July 18, 2026 06:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant