Skip to content

Bump astral-sh/setup-uv from 5 to 7#3

Merged
caufieldjh merged 2 commits intomainfrom
dependabot/github_actions/astral-sh/setup-uv-7
Jan 15, 2026
Merged

Bump astral-sh/setup-uv from 5 to 7#3
caufieldjh merged 2 commits intomainfrom
dependabot/github_actions/astral-sh/setup-uv-7

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2025

Bumps astral-sh/setup-uv from 5 to 7.

Release notes

Sourced from astral-sh/setup-uv's releases.

v7.0.0 🌈 node24 and a lot of bugfixes

Changes

This release comes with a load of bug fixes and a speed up. Because of switching from node20 to node24 it is also a breaking change. If you are running on GitHub hosted runners this will just work, if you are using self-hosted runners make sure, that your runners are up to date. If you followed the normal installation instructions your self-hosted runner will keep itself updated.

This release also removes the deprecated input server-url which was used to download uv releases from a different server. The manifest-file input supersedes that functionality by adding a flexible way to define available versions and where they should be downloaded from.

Fixes

  • The action now respects when the environment variable UV_CACHE_DIR is already set and does not overwrite it. It now also finds cache-dir settings in config files if you set them.
  • Some users encountered problems that cache pruning took forever because they had some uv processes running in the background. Starting with uv version 0.8.24 this action uses uv cache prune --ci --force to ignore the running processes
  • If you just want to install uv but not have it available in path, this action now respects UV_NO_MODIFY_PATH
  • Some other actions also set the env var UV_CACHE_DIR. This action can now deal with that but as this could lead to unwanted behavior in some edgecases a warning is now displayed.

Improvements

If you are using minimum version specifiers for the version of uv to install for example

[tool.uv]
required-version = ">=0.8.17"

This action now detects that and directly uses the latest version. Previously it would download all available releases from the uv repo to determine the highest matching candidate for the version specifier, which took much more time.

If you are using other specifiers like 0.8.x this action still needs to download all available releases because the specifier defines an upper bound (not 0.9.0 or later) and "latest" would possibly not satisfy that.

🚨 Breaking changes

🐛 Bug fixes

🚀 Enhancements

🧰 Maintenance

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Dec 4, 2025
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 5 to 7.
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](astral-sh/setup-uv@v5...v7)

---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dragon-ai-agent dragon-ai-agent force-pushed the dependabot/github_actions/astral-sh/setup-uv-7 branch from 09f3082 to f4bbd3b Compare January 5, 2026 18:38
@claude
Copy link
Contributor

claude bot commented Jan 5, 2026

Claude finished @dependabot[bot]'s task —— View job


PR Review: Bump astral-sh/setup-uv from 5 to 7

Todo List

  • Read and analyze changed workflow files
  • Check for breaking change compatibility
  • Review security implications
  • Assess performance considerations
  • Provide comprehensive feedback

Analysis of Changes

All five workflow files have been updated to use astral-sh/setup-uv@v7 instead of v5. The changes are straightforward version bumps:

Files Updated:

  • .github/workflows/claude.yml:34 - Claude Code workflow
  • .github/workflows/deploy-docs.yaml:36 - Documentation deployment
  • .github/workflows/dragon-ai.yml:134 - Dragon AI agent workflow
  • .github/workflows/main.yaml:35 - Main CI workflow
  • .github/workflows/pypi-publish.yaml:37 - PyPI publishing workflow

Current Usage Pattern: All workflows use basic setup without deprecated features.

Review Findings

Code Quality & Best Practices

  • EXCELLENT: Clean, minimal configuration changes
  • GOOD: Consistent pinning to major version (@v7) across all workflows
  • GOOD: No deprecated server-url input found in any workflow

Breaking Change Compatibility

  • SAFE: Node.js 24 requirement is automatically handled by GitHub-hosted runners
  • SAFE: No usage of deprecated server-url input that was removed in v7
  • SAFE: All current configuration options remain compatible

Security Considerations

  • POSITIVE: v7 includes security improvements and bug fixes
  • GOOD: No changes to permissions or token usage
  • SAFE: Trusted action from reputable maintainer with regular updates

Performance Improvements

  • ENHANCEMENT: v7 includes performance optimizations for minimum version specifiers
  • FIX: Improved cache handling with --force flag for pruning
  • FIX: Better respect for UV_CACHE_DIR environment variable

⚠️ Minor Considerations

  • INFO: Self-hosted runners (if any) need Node.js 24+ support
  • INFO: v7 may display warnings if UV_CACHE_DIR is set by other actions

Recommendation

✅ APPROVE - This is a safe and beneficial upgrade that:

  • Fixes several cache-related bugs
  • Improves performance for version resolution
  • Maintains full backward compatibility with current usage
  • Enhances security and stability

The upgrade is well-tested by dependabot and ready for merge.

@claude
Copy link
Contributor

claude bot commented Jan 15, 2026

Claude finished @dependabot[bot]'s task —— View job


PR Review: Bump astral-sh/setup-uv from 5 to 7

Todo List

  • Read and analyze changed workflow files
  • Check for breaking change compatibility
  • Review security implications
  • Assess performance considerations
  • Provide comprehensive feedback

Analysis of Changes

All five workflow files have been updated to use astral-sh/setup-uv@v7 instead of v5. The changes are straightforward version bumps:

Files Updated:

  • .github/workflows/claude.yml:34 - Claude Code workflow
  • .github/workflows/deploy-docs.yaml:36 - Documentation deployment
  • .github/workflows/dragon-ai.yml:134 - Dragon AI agent workflow
  • .github/workflows/main.yaml:49 - Main CI workflow
  • .github/workflows/pypi-publish.yaml:37 - PyPI publishing workflow

Current Usage Pattern: All workflows use basic setup without deprecated features.

Review Findings

Code Quality & Best Practices

  • EXCELLENT: Clean, minimal configuration changes
  • GOOD: Consistent pinning to major version (@v7) across all workflows
  • GOOD: No deprecated server-url input found in any workflow

Breaking Change Compatibility

  • SAFE: Node.js 24 requirement is automatically handled by GitHub-hosted runners
  • SAFE: No usage of deprecated server-url input that was removed in v7
  • SAFE: All current configuration options remain compatible

Security Considerations

  • POSITIVE: v7 includes security improvements and bug fixes
  • GOOD: No changes to permissions or token usage
  • SAFE: Trusted action from reputable maintainer with regular updates

Performance Improvements

  • ENHANCEMENT: v7 includes performance optimizations for minimum version specifiers
  • FIX: Improved cache handling with --force flag for pruning
  • FIX: Better respect for UV_CACHE_DIR environment variable

⚠️ Minor Considerations

  • INFO: Self-hosted runners (if any) need Node.js 24+ support
  • INFO: v7 may display warnings if UV_CACHE_DIR is set by other actions

Recommendation

✅ APPROVE - This is a safe and beneficial upgrade that:

  • Fixes several cache-related bugs
  • Improves performance for version resolution
  • Maintains full backward compatibility with current usage
  • Enhances security and stability

The upgrade is well-tested by dependabot and ready for merge.


@caufieldjh caufieldjh merged commit 26d9015 into main Jan 15, 2026
2 checks passed
@caufieldjh caufieldjh deleted the dependabot/github_actions/astral-sh/setup-uv-7 branch January 15, 2026 16:16
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