Skip to content

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

Merged
drakulavich merged 1 commit into
mainfrom
dependabot/github_actions/actions-640176b5ab
Jun 24, 2026
Merged

ci(deps): bump actions/checkout from 6 to 7 in the actions group#11
drakulavich merged 1 commit into
mainfrom
dependabot/github_actions/actions-640176b5ab

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the 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 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: actions
...

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
@greptile-apps

greptile-apps Bot commented Jun 22, 2026

Copy link
Copy Markdown

Greptile Summary

This PR bumps actions/checkout from v6 to v7 in both the CI and Release workflows, as generated by Dependabot.

  • ci.yml: Updates the checkout step used for test, type-check, and build jobs triggered on push/pull_request. No behavioral change expected since neither trigger is affected by v7's new restriction on fork-PR checkouts for pull_request_target/workflow_run.
  • release.yml: Updates the checkout step used for the publish job triggered on tag pushes (v*). Same reasoning applies — the trigger type is unaffected by v7's breaking change.

Confidence Score: 5/5

Safe to merge — the change is a straightforward version bump to a well-maintained first-party GitHub action with no impact on the existing trigger types.

Both workflows use push/pull_request/tag-push triggers that are entirely unaffected by v7's one notable behavioral change (blocking fork-PR checkout for pull_request_target and workflow_run). The update also brings dependency refreshes and a security hardening improvement to actions/checkout itself.

No files require special attention.

Important Files Changed

Filename Overview
.github/workflows/ci.yml Bumps actions/checkout from v6 to v7; triggers are push and pull_request, not affected by the breaking change in v7 that blocks fork-PR checkout for pull_request_target/workflow_run.
.github/workflows/release.yml Bumps actions/checkout from v6 to v7; triggered only on tag pushes (v*), unaffected by the v7 security restriction on fork-PR checkouts.

Sequence Diagram

%%{init: {'theme': 'neutral'}}%%
sequenceDiagram
    participant GH as GitHub
    participant CI as ci.yml (push/PR)
    participant REL as release.yml (tag push)
    participant CO as actions/checkout@v7

    GH->>CI: push to main / pull_request
    CI->>CO: checkout repository
    CO-->>CI: workspace ready
    CI->>CI: bun install, test, build

    GH->>REL: "push tag v*"
    REL->>CO: checkout repository
    CO-->>REL: workspace ready
    REL->>REL: bun install, test, build, npm publish
Loading
%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%%
sequenceDiagram
    participant GH as GitHub
    participant CI as ci.yml (push/PR)
    participant REL as release.yml (tag push)
    participant CO as actions/checkout@v7

    GH->>CI: push to main / pull_request
    CI->>CO: checkout repository
    CO-->>CI: workspace ready
    CI->>CI: bun install, test, build

    GH->>REL: "push tag v*"
    REL->>CO: checkout repository
    CO-->>REL: workspace ready
    REL->>REL: bun install, test, build, npm publish
Loading

Reviews (1): Last reviewed commit: "ci(deps): bump actions/checkout from 6 t..." | Re-trigger Greptile

@drakulavich drakulavich merged commit 92cb085 into main Jun 24, 2026
3 checks passed
@dependabot dependabot Bot deleted the dependabot/github_actions/actions-640176b5ab branch June 24, 2026 11:52
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