Skip to content

chore(deps): bump actions/checkout from 4.3.1 to 6.0.2#14

Merged
nvandessel merged 1 commit intomainfrom
dependabot/github_actions/actions/checkout-6.0.2
Mar 31, 2026
Merged

chore(deps): bump actions/checkout from 4.3.1 to 6.0.2#14
nvandessel merged 1 commit intomainfrom
dependabot/github_actions/actions/checkout-6.0.2

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 31, 2026

Bumps actions/checkout from 4.3.1 to 6.0.2.

Release notes

Sourced from actions/checkout's releases.

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

v6.0.0

What's Changed

Full Changelog: actions/checkout@v5.0.0...v6.0.0

v6-beta

What's Changed

Updated persist-credentials to store the credentials under $RUNNER_TEMP instead of directly in the local git config.

This requires a minimum Actions Runner version of v2.329.0 to access the persisted credentials for Docker container action scenarios.

v5.0.1

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

v5.0.0

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

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

v4.1.6

... (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)

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

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  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 Mar 31, 2026
@greptile-apps
Copy link
Copy Markdown
Contributor

greptile-apps bot commented Mar 31, 2026

Greptile Summary

This PR bumps actions/checkout from v4.3.1 to v6.0.2 in the test workflow, skipping the v5.x line entirely. The action reference remains pinned to a full commit SHA (de0fac2e4500dabe0009e67214ff5f5447ce83dd), preserving the supply-chain security posture of the repository.

Key changes introduced across the skipped versions:

  • v5.0.0: Moved the action runtime to Node.js 24 (requires minimum runner v2.327.1).
  • v6.0.0: Credentials are now persisted to $RUNNER_TEMP (a separate temp file) instead of directly into the local git config — a security improvement. Requires minimum runner v2.329.0.
  • v6.0.2: Fixes tag handling (annotation preservation and explicit fetch-tags).

Since the workflow runs on ubuntu-latest (a GitHub-hosted runner kept current by GitHub), the minimum runner version requirement (v2.329.0) is expected to be satisfied automatically. The workflow only performs a read-only checkout and does not rely on credential persistence for follow-up git operations, so the credential storage change in v6 has no behavioral impact here.

Confidence Score: 5/5

Safe to merge — routine dependabot bump with no logic changes and continued SHA pinning.

No P0 or P1 issues found. The action is still pinned to a full commit SHA (good security practice), the workflow logic is unchanged, and the major version jump (v4 → v6) introduces only improvements (better credential handling, Node 24 runtime, tag-handling fixes). GitHub-hosted runners satisfy the minimum version requirement automatically.

No files require special attention.

Important Files Changed

Filename Overview
.github/workflows/test.yml Single-line bump of actions/checkout from v4.3.1 to v6.0.2, still pinned to a full commit SHA; no logic changes to the workflow.

Sequence Diagram

sequenceDiagram
    participant GH as GitHub Actions
    participant Checkout as actions/checkout@v6.0.2
    participant UV as astral-sh/setup-uv@v4.2.0
    participant Runner as ubuntu-latest Runner

    GH->>Runner: Trigger (push/PR)
    Runner->>Checkout: Checkout repository (SHA-pinned)
    Note over Checkout: Credentials stored in $RUNNER_TEMP (v6 change)
    Checkout-->>Runner: Workspace ready
    Runner->>UV: Install uv (cache enabled)
    UV-->>Runner: uv ready
    Runner->>Runner: uv python install 3.11
    Runner->>Runner: uv sync --extra dev
    Runner->>Runner: uv run ruff check src/ tests/
    Runner->>Runner: uv run pytest --cov=hippofloop
    Runner-->>GH: Report results
Loading

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

@nvandessel nvandessel merged commit b08aea1 into main Mar 31, 2026
3 checks passed
@nvandessel nvandessel deleted the dependabot/github_actions/actions/checkout-6.0.2 branch March 31, 2026 19:48
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