Skip to content

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

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/astral-sh/setup-uv-7
Open

Bump astral-sh/setup-uv from 5 to 7#1
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/astral-sh/setup-uv-7

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 13, 2026

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

Release notes

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

v7.2.1 🌈 update known checksums up to 0.9.28

Changes

🧰 Maintenance

📚 Documentation

⬆️ Dependency updates

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

... (truncated)

Commits
  • 37802ad Fetch uv from Astral's mirror by default (#809)
  • 9f00d18 chore(deps): bump zizmorcore/zizmor-action from 0.5.0 to 0.5.2 (#808)
  • fd8f376 Switch to ESM for source and test, use CommonJS for dist (#806)
  • f9070de Bump deps (#805)
  • cadb67b chore: update known checksums for 0.10.10 (#804)
  • e06108d Use astral-sh/versions as primary version provider (#802)
  • 0f6ec07 docs: replace copilot instructions with AGENTS.md (#794)
  • 821e5c9 docs: add cross-client dependabot rollup skill (#793)
  • 6ee6290 chore(deps): bump versions (#792)
  • 9f332a1 Add riscv64 architecture support to platform detection (#791)
  • Additional commits viewable in compare view

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 [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>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Apr 13, 2026
rafael5 added a commit that referenced this pull request Apr 13, 2026
- Table of contents with anchor links to all phases and subsections
- Section 1.0: File #1 (FILE, ^DIC) — the file registry meta-file
  - Field schema via DataDictionary (^DD(1,...))
  - Entry enumeration via FileReader as cross-check against FileInventory
  - Cross-reference listing (the "B" index used by FIND^DIC internally)
  - Data-quality note: comparing count_entries(1) vs FileInventory total
    to detect orphan ^DIC entries without a zero-node
- Updated Background hub-file table: added File #1 and File #9.4 as
  the two meta-files that anchor the entire FileMan registry

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
rafael5 added a commit that referenced this pull request Apr 15, 2026
Tasks 1-4 of the phase-1 planning guide's critical path:

1. File-1 entry count fix: phase1-scope.py now reports file #1 entries
   as total_files (the ^DIC top-level walk) instead of the misleading 0
   from walking the empty ^DIC(1,...) subtree.
2. New src/vista_fm_browser/type_codes.py: decompose(raw) -> TypeSpec
   returns base type, required/audit flags, modifiers, numeric width/
   decimals, pointer target, is_multiple. _extract_type_code retrofit
   to delegate. FieldDef gains raw_type. Phase1 emits modifier/flag
   stats + new type_modifiers.csv.
3. New src/vista_fm_browser/attribution.py + phase1_5 script:
   three heuristics (namespace prefix, empirical range, canonical range)
   attribute 1,544/1,683 unpackaged files (91.7%). Output in
   output/phase1_5/.
4. Canonical denominator locked in phase1-planning-guide.md:
   2,915 total / 2,776 attributed / 139 residual. Downstream phases
   must use these numbers.

Living planning guide at output/phase1/phase1-planning-guide.md
tracks findings and iteration history.

Tests: tests/test_type_codes.py (30+ cases), tests/test_attribution.py
(23 cases) — all pass under host-python smoke test; need make test in
VEHU container for formal run.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
rafael5 added a commit that referenced this pull request Apr 15, 2026
- phase1-scope.py OUTPUT_DIR: ~/data/vista-fm-browser/phase1 → <repo>/output/phase1
  so outputs land inside the repo per the project convention.
- Regenerated phase 1 from live VEHU data: type codes now correctly
  collapsed (F/S/N/P/D/M are 97% of fields), file #1 reports 2,915
  entries, type_modifiers.csv emitted with per-modifier and flag totals.
- Phase 1.5 re-run: 1,544/1,683 attributed (91.7%), unchanged.
- Container smoke test: 58/58 tests pass (test_type_codes + test_attribution).
- Planning guide updated with iteration 1.5 (validation) entry and Q4
  open question on the 69k→47k field-count shift.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
rafael5 added a commit that referenced this pull request Apr 15, 2026
ASSUMPTIONS-AUDIT.md: audits every claim made across iterations 1-1.6.

Verified via live VEHU probes:
  A1. 2,915 files (^DIC walk: 2916 total, 1 is header "0")
  A2. File #1 entries = total_files (subtree is empty by design)
  A3. Field count 46,790 is correct for top-level files; old 69,328
      included 5,346 subfile nodes (^DD has 8,261 top-level numeric subs)
  A4. Prefix attribution correct on sampled high+med confidence rows

Partial/unverified (with caveats documented):
  A5. Type modifiers J/X/O/I understood; a/t/m/p/w/C need VA-doc lookup
  A6. Canonical range table conservative, only 32 files matched
  A7. Phase-3 top-30 hub choice is heuristic
  A8. FREE TEXT scoring weights not tuned
  A9. 139 residuals assumed = data quality, not verified at source
  A10. Package count 470-vs-469 minor discrepancy

New open questions: Q4 RESOLVED. Q5 (lowercase modifier semantics),
Q6 (M<prefix><base> parser bug on e.g. MRD), Q7 (residual source probe),
Q8 (package count off-by-one).

None block phase 2.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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