Skip to content

chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 in the dependencies group#416

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/dependencies-6a98abd9ac
Closed

chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 in the dependencies group#416
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/dependencies-6a98abd9ac

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 1 update: actions/checkout.

Updates actions/checkout from 6.0.2 to 6.0.3

Release notes

Sourced from actions/checkout's releases.

v6.0.3

What's Changed

New Contributors

Full Changelog: actions/checkout@v6...v6.0.3

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 dependencies group with 1 update: [actions/checkout](https://github.com/actions/checkout).


Updates `actions/checkout` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/actions/checkout/releases)
- [Commits](actions/checkout@v6.0.2...v6.0.3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 7, 2026
@dependabot dependabot Bot requested a review from a team as a code owner June 7, 2026 11:42
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jun 7, 2026
@kusari-inspector

Copy link
Copy Markdown

Kusari Inspector

Kusari Analysis Results:

Do not proceed without addressing issues

Caution

Flagged Issues Detected
These changes contain flagged issues that may introduce security risks.

The dependency analysis found no concerns. However, the code analysis identified three high-severity supply chain risk issues across ci.yml (lines 15 and 36) and release.yml (line 32). In all three cases, actions/checkout is pinned to a mutable version tag (v6.0.3) rather than an immutable commit SHA. Version tags can be silently redirected by an upstream maintainer or a compromised account to point to malicious code, meaning any workflow run could execute arbitrary code in your CI/CD pipeline without any visible change to your configuration. This is particularly notable because other actions in the same workflows (actions/setup-go, cue-lang/setup-cue) are correctly pinned to commit SHAs, indicating awareness of this security practice — making the unpinned checkouts a clear and addressable gap. We strongly recommend replacing the three occurrences of uses: actions/checkout@v6.0.3 with the corresponding immutable commit SHA before merging.

Note

View full detailed analysis result for more information on the output and the checks that were run.

Required Code Mitigations

actions/checkout is pinned to a version tag (v6.0.3) rather than an immutable commit SHA. Version tags can be moved by the upstream maintainer, exposing this workflow to supply chain attacks. Pin this action to a specific commit SHA instead.

actions/checkout is pinned to a version tag (v6.0.3) rather than an immutable commit SHA. Version tags can be moved by the upstream maintainer, exposing this workflow to supply chain attacks. Pin this action to a specific commit SHA instead.

actions/checkout is pinned to a version tag (v6.0.3) rather than an immutable commit SHA. Version tags can be moved by the upstream maintainer, exposing this workflow to supply chain attacks. Pin this action to a specific commit SHA instead.


@kusari-inspector rerun - Trigger a re-analysis of this PR
@kusari-inspector feedback [your message] - Send feedback to our AI and team
See Kusari's documentation for setup and configuration.
Commit: 8ddb029, performed at: 2026-06-07T11:43:14Z

Found this helpful? Give it a 👍 or 👎 reaction!

Comment thread .github/workflows/ci.yml

steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

actions/checkout is pinned to a version tag (v6.0.3) rather than an immutable commit SHA. Version tags can be moved by the upstream maintainer, exposing this workflow to supply chain attacks. Pin this action to a specific commit SHA instead.

Comment thread .github/workflows/ci.yml

steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

actions/checkout is pinned to a version tag (v6.0.3) rather than an immutable commit SHA. Version tags can be moved by the upstream maintainer, exposing this workflow to supply chain attacks. Pin this action to a specific commit SHA instead.

steps:
- name: Checkout
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

actions/checkout is pinned to a version tag (v6.0.3) rather than an immutable commit SHA. Version tags can be moved by the upstream maintainer, exposing this workflow to supply chain attacks. Pin this action to a specific commit SHA instead.

Comment thread .github/workflows/ci.yml

steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3

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.

Suggested change
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

Comment thread .github/workflows/ci.yml

steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3

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.

Suggested change
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

steps:
- name: Checkout
uses: actions/checkout@v6.0.2
uses: actions/checkout@v6.0.3

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.

Suggested change
uses: actions/checkout@v6.0.3
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

@dependabot @github

dependabot Bot commented on behalf of github Jun 14, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Jun 14, 2026
@dependabot dependabot Bot deleted the dependabot/github_actions/dependencies-6a98abd9ac branch June 14, 2026 11:42
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 maintenance

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant