Skip to content

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

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

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 24, 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)

Summary by CodeRabbit

  • Chores
    • Updated the automated validation, build, and release workflows to use a newer checkout action version.
    • No changes to application functionality or user-facing behavior.

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 dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jul 24, 2026
@coderabbitai

coderabbitai Bot commented Jul 24, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

The CI validation, build, and release workflows update actions/checkout from v4 to v7. Other workflow setup, build, test, artifact, and release steps remain unchanged.

Changes

Checkout action upgrade

Layer / File(s) Summary
Workflow checkout updates
.github/workflows/ci.yml, .github/workflows/release.yml
The CI validate and build jobs and the release workflow now use actions/checkout@v7.

Estimated code review effort: 1 (Trivial) | ~5 minutes

Suggested reviewers: hoangsvit

🚥 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 title accurately summarizes the main change: upgrading actions/checkout from version 4 to 7.
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.
✨ 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.

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

Actionable comments posted: 1

🤖 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.

Inline comments:
In @.github/workflows/ci.yml:
- Line 15: Add persist-credentials: false to every actions/checkout step:
.github/workflows/ci.yml lines 15-15 and 28-28, and
.github/workflows/release.yml line 11-11. Keep the existing checkout versions
and job behavior unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 316a8f51-102f-4e62-9bc4-450580493721

📥 Commits

Reviewing files that changed from the base of the PR and between fc0dae2 and 9059cef.

📒 Files selected for processing (2)
  • .github/workflows/ci.yml
  • .github/workflows/release.yml

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.

🔒 Security & Privacy | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

printf '\n== ci.yml ==\n'
nl -ba .github/workflows/ci.yml | sed -n '1,220p'

printf '\n== release.yml ==\n'
nl -ba .github/workflows/release.yml | sed -n '1,220p'

Repository: ePlus-DEV/wxt-extension-template

Length of output: 224


🏁 Script executed:

#!/bin/bash
set -euo pipefail

printf '\n== search for git/github auth usage in workflows ==\n'
rg -n "git (push|fetch|pull|submodule)|gh |github.token|GITHUB_TOKEN|persist-credentials|checkout@v" .github/workflows

Repository: ePlus-DEV/wxt-extension-template

Length of output: 414


🏁 Script executed:

#!/bin/bash
set -euo pipefail

printf '\n== ci.yml ==\n'
nl -ba .github/workflows/ci.yml | sed -n '1,220p'

printf '\n== release.yml ==\n'
nl -ba .github/workflows/release.yml | sed -n '1,220p'

printf '\n== workflow auth usage search ==\n'
rg -n "git (push|fetch|pull|submodule)|gh |github.token|GITHUB_TOKEN|persist-credentials|checkout@v" .github/workflows

Repository: ePlus-DEV/wxt-extension-template

Length of output: 224


🏁 Script executed:

#!/bin/bash
set -euo pipefail

printf '\n== ci.yml ==\n'
cat -n .github/workflows/ci.yml | sed -n '1,220p'

printf '\n== release.yml ==\n'
cat -n .github/workflows/release.yml | sed -n '1,220p'

printf '\n== git/auth-related references in workflows ==\n'
rg -n "git (push|fetch|pull|submodule)|gh |github.token|GITHUB_TOKEN|persist-credentials|checkout@" .github/workflows

Repository: ePlus-DEV/wxt-extension-template

Length of output: 2284


Disable checkout credential persistence here.
All three jobs only install, build, test, or publish artifacts; none need git auth after checkout. Add persist-credentials: false to each actions/checkout step.

🧰 Tools
🪛 zizmor (1.26.1)

[warning] 15-15: credential persistence through GitHub Actions artifacts (artipacked): does not set persist-credentials: false

(artipacked)

📍 Affects 2 files
  • .github/workflows/ci.yml#L15-L15 (this comment)
  • .github/workflows/ci.yml#L28-L28
  • .github/workflows/release.yml#L11-L11
🤖 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/ci.yml at line 15, Add persist-credentials: false to every
actions/checkout step: .github/workflows/ci.yml lines 15-15 and 28-28, and
.github/workflows/release.yml line 11-11. Keep the existing checkout versions
and job behavior unchanged.

Source: Linters/SAST tools

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.

0 participants