Skip to content

ci: bump actions/checkout from 6.0.2 to 6.0.3#19

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

ci: bump actions/checkout from 6.0.2 to 6.0.3#19
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-6.0.3

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps 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

Changelog

Sourced from actions/checkout's changelog.

Changelog

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

v4.2.0

v4.1.7

... (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 GitHub Actions workflow dependencies to use the latest checkout action version across CI and release pipelines.

Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@de0fac2...df4cb1c)

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

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

coderabbitai Bot commented Jun 7, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

Both the CI and release GitHub Actions workflows are updated to pin actions/checkout to version v6.0.3, replacing the previous v6.0.2 pin. No workflow logic, job structure, or trigger conditions are changed.

Changes

GitHub Actions Updates

Layer / File(s) Summary
Checkout action version pins
.github/workflows/ci.yml, .github/workflows/release.yml
actions/checkout is pinned to v6.0.3 in both the CI workflow (line 15) and release workflow (line 42), replacing the v6.0.2 pins.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

🐰 The checkout action hops to v6.0.3,
Consistent pinning across CI and release,
A tiny update, swift and clean—
The most stable workflows we've ever seen!

🚥 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 clearly and specifically summarizes the main change: bumping the actions/checkout dependency from version 6.0.2 to 6.0.3 across CI workflows.
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-6.0.3

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.

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/release.yml:
- Line 42: The checkout step using "uses:
actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10" in the release
workflow should set persist-credentials: false; update the checkout step in the
build job to include persist-credentials: false so the workflow does not persist
the GITHUB_TOKEN to local git config (keep the same uses reference and add the
persist-credentials key under that step).
🪄 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: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: eeebcef4-d2f0-47a3-90eb-a286a49d0738

📥 Commits

Reviewing files that changed from the base of the PR and between 0c036d9 and 6465de9.

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


steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # 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.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify checkout steps missing persist-credentials hardening.
rg -n -C2 'uses:\s*actions/checkout@' .github/workflows \
  && rg -n -C2 'persist-credentials:\s*false' .github/workflows

Repository: gominimal/kittyview

Length of output: 772


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "=== release.yml around checkout (lines 30-80) ==="
nl -ba .github/workflows/release.yml | sed -n '30,90p'

echo
echo "=== Any artifact handling in release.yml ==="
rg -n "upload-artifact|download-artifact|artifact" .github/workflows/release.yml || true

echo
echo "=== Any other checkout steps with persist-credentials in workflows ==="
rg -n "persist-credentials:" .github/workflows || true

Repository: gominimal/kittyview

Length of output: 174


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "=== release.yml around checkout (lines 30-80) ==="
awk 'NR>=30 && NR<=80 {print NR ":" $0}' .github/workflows/release.yml

echo
echo "=== Any artifact handling in release.yml ==="
rg -n "upload-artifact|download-artifact|artifact" .github/workflows/release.yml || true

echo
echo "=== Any checkout steps with persist-credentials in workflows ==="
rg -n "persist-credentials:" .github/workflows || true

Repository: gominimal/kittyview

Length of output: 2226


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "=== release.yml lines 70-160 ==="
awk 'NR>=70 && NR<=160 {print NR ":" $0}' .github/workflows/release.yml

echo
echo "=== Any actions/checkout@ usage in release.yml ==="
rg -n "uses:\s*actions/checkout@" .github/workflows/release.yml

Repository: gominimal/kittyview

Length of output: 1138


Add persist-credentials: false to checkout in the release workflow.

actions/checkout in the build job (line 42) runs before artifact packaging/upload, and it currently doesn’t disable persisting the token to the local git config.

Suggested patch
-      - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
+      - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
+        with:
+          persist-credentials: false
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
🧰 Tools
🪛 zizmor (1.25.2)

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

(artipacked)

🤖 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/release.yml at line 42, The checkout step using "uses:
actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10" in the release
workflow should set persist-credentials: false; update the checkout step in the
build job to include persist-credentials: false so the workflow does not persist
the GITHUB_TOKEN to local git config (keep the same uses reference and add the
persist-credentials key under that step).

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