Skip to content

build(deps): bump actions/checkout from 6 to 7#1141

Merged
eqrx merged 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7
Jun 22, 2026
Merged

build(deps): bump actions/checkout from 6 to 7#1141
eqrx merged 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 18, 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 dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jun 18, 2026
@dependabot dependabot Bot requested a review from a team as a code owner June 18, 2026 23:12
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jun 18, 2026
@coderabbitai

coderabbitai Bot commented Jun 18, 2026

Copy link
Copy Markdown

Walkthrough

Updates actions/checkout from v6 to v7 in three GitHub Actions workflow files: codeql-analysis.yml, release.yaml, and testing.yaml (two job steps). No other workflow logic or configuration is changed.

Changes

actions/checkout v6 → v7

Layer / File(s) Summary
Checkout action version bump
.github/workflows/codeql-analysis.yml, .github/workflows/release.yaml, .github/workflows/testing.yaml
All four checkout steps across the three workflow files are updated from actions/checkout@v6 to actions/checkout@v7.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main change: bumping the actions/checkout dependency from version 6 to version 7 across workflow files.
Description check ✅ Passed The description provides detailed information about the dependency bump, including release notes, changelog entries, and commit history from the actions/checkout repository.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dependabot/github_actions/actions/checkout-7

Comment @coderabbitai help to get the list of available commands and usage tips.

@codecov

codecov Bot commented Jun 18, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 63.29%. Comparing base (4565027) to head (5fe6381).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1141   +/-   ##
=======================================
  Coverage   63.29%   63.29%           
=======================================
  Files          13       13           
  Lines         869      869           
=======================================
  Hits          550      550           
  Misses        280      280           
  Partials       39       39           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@coderabbitai coderabbitai 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.

🧹 Nitpick comments (1)
.github/workflows/codeql-analysis.yml (1)

36-38: ⚡ Quick win

Consider pinning actions to commit SHA for enhanced security.

While the version bump to v7 is correct, consider pinning the action to a specific commit SHA instead of a version tag to prevent potential supply chain attacks. This applies to all actions in the workflow.

For example:

uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v7.2.0
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/codeql-analysis.yml around lines 36 - 38, Replace the
version tag reference in the actions/checkout action (currently using `@v7`) with
a specific commit SHA to enhance security against supply chain attacks. Instead
of using `@v7`, pin the action to its corresponding commit hash and include an
inline comment with the version number for reference. Apply this same pinning
pattern to all other GitHub Actions used throughout the entire
codeql-analysis.yml workflow file.

Source: Linters/SAST tools

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In @.github/workflows/codeql-analysis.yml:
- Around line 36-38: Replace the version tag reference in the actions/checkout
action (currently using `@v7`) with a specific commit SHA to enhance security
against supply chain attacks. Instead of using `@v7`, pin the action to its
corresponding commit hash and include an inline comment with the version number
for reference. Apply this same pinning pattern to all other GitHub Actions used
throughout the entire codeql-analysis.yml workflow file.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Enterprise

Run ID: 88406ff0-68f5-4925-b6f6-8921fbdb6fc5

📥 Commits

Reviewing files that changed from the base of the PR and between 4565027 and 5fe6381.

📒 Files selected for processing (3)
  • .github/workflows/codeql-analysis.yml
  • .github/workflows/release.yaml
  • .github/workflows/testing.yaml

@eqrx eqrx merged commit c6a881f into main Jun 22, 2026
5 checks passed
@eqrx eqrx deleted the dependabot/github_actions/actions/checkout-7 branch June 22, 2026 07:59
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 github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant