Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps actions/checkout from 5 to 6.

Release notes

Sourced from actions/checkout's releases.

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

Changelog

Sourced from actions/checkout's changelog.

Changelog

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

v4.1.5

... (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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Greptile Overview

Greptile Summary

Bumped actions/checkout from v5 to v6 across all GitHub Actions workflows, applying the update consistently to 8 checkout steps in 4 workflow files.

Key changes in v6:

  • Node.js 24 support
  • Credentials now persisted to $RUNNER_TEMP instead of local git config
  • Requires minimum Actions Runner v2.329.0 for Docker container actions

No functional changes to workflow logic or job configurations.

Confidence Score: 5/5

  • Safe to merge - straightforward dependency update with consistent application
  • Automated dependency bump by Dependabot with consistent changes across all workflow files, no logic modifications, and backwards-compatible upgrade
  • No files require special attention

Important Files Changed

File Analysis

Filename Score Overview
.github/workflows/ci.yml 5/5 Updated actions/checkout from v5 to v6 in 5 job steps (lint-and-format, test, security-scan, build, opa-policy-test)
.github/workflows/deploy.yml 5/5 Updated actions/checkout from v5 to v6 in build-and-deploy job
.github/workflows/security.yml 5/5 Updated actions/checkout from v5 to v6 in security-scan job
.github/workflows/smoke-tests.yml 5/5 Updated actions/checkout from v5 to v6 in smoke-tests job

Sequence Diagram

sequenceDiagram
    participant Dependabot
    participant CI as CI Workflow
    participant Deploy as Deploy Workflow
    participant Security as Security Workflow
    participant Smoke as Smoke Tests Workflow
    participant Checkout as actions/checkout@v6
    participant Runner as GitHub Runner

    Dependabot->>CI: Update checkout v5→v6
    Dependabot->>Deploy: Update checkout v5→v6
    Dependabot->>Security: Update checkout v5→v6
    Dependabot->>Smoke: Update checkout v5→v6

    Note over CI,Smoke: All workflows now use actions/checkout@v6

    CI->>Runner: Trigger on push/PR
    Runner->>Checkout: Checkout repository (v6)
    Checkout->>Runner: Persist credentials to $RUNNER_TEMP
    Runner->>CI: Execute jobs (lint, test, security-scan, build, opa)

    Deploy->>Runner: Trigger on workflow_dispatch
    Runner->>Checkout: Checkout repository (v6)
    Checkout->>Runner: Persist credentials to $RUNNER_TEMP
    Runner->>Deploy: Build and deploy images

    Security->>Runner: Trigger on schedule/manual
    Runner->>Checkout: Checkout repository (v6)
    Checkout->>Runner: Persist credentials to $RUNNER_TEMP
    Runner->>Security: Run security scans

    Smoke->>Runner: Trigger on workflow_dispatch
    Runner->>Checkout: Checkout repository (v6)
    Checkout->>Runner: Persist credentials to $RUNNER_TEMP
    Runner->>Smoke: Run smoke tests
Loading

Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Nov 24, 2025
@mesa-dot-dev
Copy link

mesa-dot-dev bot commented Nov 24, 2025

Mesa Description

TL;DR

Bumped actions/checkout from version 5 to 6 across all GitHub Actions workflows.

What changed?

  • Updated actions/checkout to v6 in .github/workflows/ci.yml
  • Updated actions/checkout to v6 in .github/workflows/deploy.yml
  • Updated actions/checkout to v6 in .github/workflows/security.yml
  • Updated actions/checkout to v6 in .github/workflows/smoke-tests.yml

Description generated by Mesa. Update settings

Copy link

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

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

4 files reviewed, no comments

Edit Code Review Agent Settings | Greptile

Copy link

@mesa-dot-dev mesa-dot-dev bot left a comment

Choose a reason for hiding this comment

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

Performed incremental review of 49a85f9...7347f8a

Analysis

  1. The upgrade from actions/checkout v5 to v6 is low-risk with no breaking changes for this codebase's usage patterns, as all workflows use default parameters and no workflows reference git config directly.

  2. The improved credential storage mechanism in v6 (using $RUNNER_TEMP instead of .git/config) enhances security by reducing credential exposure, though this benefit is minimal as no workflows perform git operations after checkout.

  3. While all workflows use persist-credentials: true (default), none actually need credentials after checkout - consider adding persist-credentials: false to all checkout steps as a defense-in-depth measure.

  4. All workflows use ubuntu-latest GitHub-hosted runners which exceed the v2.329.0 minimum requirement, eliminating compatibility concerns.

  5. The project has no container-based GitHub Actions jobs (only Docker CLI usage), so the credential storage changes have no impact on Docker operations.

Tip

Help

Slash Commands:

  • /review - Request a full code review
  • /review latest - Review only changes since the last review
  • /describe - Generate PR description. This will update the PR body or issue comment depending on your configuration
  • /help - Get help with Mesa commands and configuration options

4 files reviewed | 0 comments | Edit Agent SettingsRead Docs

Copy link

@mesa-dot-dev mesa-dot-dev bot left a comment

Choose a reason for hiding this comment

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

Performed full review of 49a85f9...7347f8a

Analysis

  1. Credential Handling Change: v6 stores Git credentials in $RUNNER_TEMP instead of git config, but since all workflows perform read-only operations post-checkout with no explicit credential configurations, this change poses no risk.

  2. Runner Version Requirement: v6 requires Actions Runner v2.329.0+ for Docker container actions, but this project exclusively uses GitHub-hosted ubuntu-latest runners (which meet this requirement) and doesn't use the container: syntax for running jobs.

  3. Simple Checkout Usage: All 8 instances across 4 workflow files use default checkout parameters without advanced features (no custom fetch-depth, submodules, LFS, or token configurations), minimizing upgrade risk.

  4. No Git Write Operations: None of the workflows perform git operations (push, commit, submodule updates) that would be affected by the credential storage location change.

Tip

Help

Slash Commands:

  • /review - Request a full code review
  • /review latest - Review only changes since the last review
  • /describe - Generate PR description. This will update the PR body or issue comment depending on your configuration
  • /help - Get help with Mesa commands and configuration options

4 files reviewed | 0 comments | Edit Agent SettingsRead Docs

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