Skip to content

Conversation

@jmelahman
Copy link
Contributor

@jmelahman jmelahman commented Jan 6, 2026

Description

Standardizes the version of uv across our actions and avoids rate-limiting like https://github.com/onyx-dot-app/onyx/actions/runs/20764104130/job/59626268811#step:5:377

How Has This Been Tested?

No

Additional Options

  • Override Linear Check

Summary by cubic

Pinned uv to 0.9.9 in the Helm chart testing workflow to standardize the environment and prevent rate-limit errors during chart tests. Switched to a patched chart-testing-action that supports uv_version.

  • Dependencies
    • Use chart-testing-action version with uv_version support.
    • Set uv_version to 0.9.9 in the setup step.

Written for commit 77b5cde. Summary will update on new commits.

@jmelahman jmelahman requested a review from a team as a code owner January 6, 2026 23:54
@jmelahman jmelahman changed the base branch from jamison/helm-format to main January 6, 2026 23:55
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

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

No issues found across 1 file

@jmelahman jmelahman changed the base branch from main to jamison/helm-format January 6, 2026 23:55
@greptile-apps
Copy link
Contributor

greptile-apps bot commented Jan 6, 2026

Greptile Summary

Pinned uv_version to 0.9.9 in the helm/chart-testing-action setup step to standardize the uv version across GitHub Actions workflows and prevent rate-limiting issues during CI runs.

  • Added explicit uv_version: "0.9.9" parameter to the chart-testing-action step
  • Uses a custom patch from feat: uv_version to pin uv helm/chart-testing-action#194 (commit 8958a6ac)
  • Improved YAML formatting consistency (standardized spacing and comment placement)
  • Aligns with version already used in other workflows like deployment.yml

Confidence Score: 5/5

  • This PR is safe to merge with minimal risk
  • The change is straightforward and low-risk: it pins the uv version to prevent rate-limiting issues, which is a defensive operational improvement. The version 0.9.9 is already used successfully in other workflows. The formatting changes improve consistency without affecting functionality. No code logic or security concerns are introduced.
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/pr-helm-chart-testing.yml Pinned uv version to 0.9.9 in chart-testing-action to prevent rate-limiting issues, improved YAML formatting consistency

Sequence Diagram

sequenceDiagram
    participant GHA as GitHub Actions
    participant CTAction as chart-testing-action
    participant UV as uv (Python installer)
    participant PyPI as PyPI/Rate Limit
    
    Note over GHA,PyPI: PR triggers workflow
    GHA->>CTAction: Setup chart-testing
    
    alt Before this PR (no pinned version)
    CTAction->>UV: Install latest uv version
    UV->>PyPI: Download packages
    PyPI-->>UV: Rate limit exceeded ❌
    UV-->>CTAction: Installation fails
    CTAction-->>GHA: Workflow fails
    end
    
    alt After this PR (pinned version 0.9.9)
    CTAction->>UV: Install uv version 0.9.9
    Note over UV: Uses cached/stable version
    UV->>PyPI: Download packages (reduced load)
    PyPI-->>UV: Success ✓
    UV-->>CTAction: Installation succeeds
    CTAction-->>GHA: Continue with chart testing
    end
Loading

Base automatically changed from jamison/helm-format to main January 7, 2026 00:01
@jmelahman jmelahman merged commit 68b1bb8 into main Jan 7, 2026
32 checks passed
@jmelahman jmelahman deleted the jamison/helm-patch branch January 7, 2026 00:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants