Skip to content

chore(deps): bump actions/checkout from 6 to 7#21

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

chore(deps): bump actions/checkout from 6 to 7#21
owenvoke merged 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)

Summary by CodeRabbit

  • Chores
    • Updated continuous integration pipeline tooling versions to enhance reliability.

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 22, 2026
@coderabbitai

coderabbitai Bot commented Jun 22, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

Three checkout steps across two GitHub Actions workflow files (.github/workflows/static.yml and .github/workflows/tests.yml) are updated from actions/checkout@v6 to actions/checkout@v7. No other workflow logic, steps, or configuration is changed.

Changes

actions/checkout v7 upgrade

Layer / File(s) Summary
Upgrade actions/checkout to v7 across all workflows
.github/workflows/static.yml, .github/workflows/tests.yml
The phpstan job, ecs job, and test matrix job each have their actions/checkout step bumped from @v6 to @v7.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

A bunny hops through workflow lanes,
Swapping v6 for v7 gains,
Checkout steps now freshly new,
Three small lines, a cleaner queue,
The CI garden blooms anew! 🐇✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The PR title accurately and concisely summarizes the main change: bumping actions/checkout from version 6 to 7 across the workflow files.
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.

@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 (2)
.github/workflows/static.yml (1)

14-14: 🧹 Nitpick | 🔵 Trivial | ⚡ Quick win

Consider adding persist-credentials: false for credential security.

Both checkout steps should explicitly disable credential persistence to prevent Git tokens from being accessible to subsequent workflow steps. This is a security best practice, especially in workflows that may execute untrusted code or have multiple steps.

🔐 Proposed fix for the phpstan job (line 14)
      - uses: actions/checkout@v7
+        with:
+          persist-credentials: false
🔐 Proposed fix for the ecs job (line 35)
      - name: Checkout
        uses: actions/checkout@v7
+        with:
+          persist-credentials: false

Also applies to: 35-35

🤖 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/static.yml at line 14, Both instances of the
actions/checkout@v7 step in the workflow (in the phpstan job at line 14 and in
the ecs job at line 35) need to include the persist-credentials: false parameter
to prevent Git tokens from being exposed to subsequent workflow steps. Add this
configuration parameter to both checkout steps to follow security best practices
and ensure credentials are not persisted across the workflow execution.
.github/workflows/tests.yml (1)

22-22: 🧹 Nitpick | 🔵 Trivial | ⚡ Quick win

Consider adding persist-credentials: false for credential security.

The checkout step should explicitly disable credential persistence to prevent Git tokens from being accessible to subsequent workflow steps. This is a security best practice, especially in test workflows.

🔐 Proposed fix
      - name: Checkout code
        uses: actions/checkout@v7
+        with:
+          persist-credentials: false
🤖 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/tests.yml at line 22, The actions/checkout@v7 step in the
tests.yml workflow is missing a security configuration that prevents Git
credentials from being persisted in the workflow environment. Add the
`persist-credentials: false` option to the checkout step to ensure that Git
tokens are not accessible to subsequent workflow steps. This should be added as
a `with:` clause under the `uses: actions/checkout@v7` line.
🤖 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/static.yml:
- Line 14: Both instances of the actions/checkout@v7 step in the workflow (in
the phpstan job at line 14 and in the ecs job at line 35) need to include the
persist-credentials: false parameter to prevent Git tokens from being exposed to
subsequent workflow steps. Add this configuration parameter to both checkout
steps to follow security best practices and ensure credentials are not persisted
across the workflow execution.

In @.github/workflows/tests.yml:
- Line 22: The actions/checkout@v7 step in the tests.yml workflow is missing a
security configuration that prevents Git credentials from being persisted in the
workflow environment. Add the `persist-credentials: false` option to the
checkout step to ensure that Git tokens are not accessible to subsequent
workflow steps. This should be added as a `with:` clause under the `uses:
actions/checkout@v7` line.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 26586a78-169f-42c0-8151-8e85dc2bdd86

📥 Commits

Reviewing files that changed from the base of the PR and between 90faea6 and f1bd3af.

📒 Files selected for processing (2)
  • .github/workflows/static.yml
  • .github/workflows/tests.yml

@owenvoke owenvoke merged commit 2248e17 into main Jun 22, 2026
5 checks passed
@owenvoke owenvoke deleted the dependabot/github_actions/actions/checkout-7 branch June 22, 2026 10:34
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

Development

Successfully merging this pull request may close these issues.

1 participant