• v8.1.0 08807647e7

    fix: grant contents:write to validate-release job (#860)

    leihua released this 2026-04-17 03:58:54 +08:00 | 67 commits to main since this release

    Problem

    The release workflow fails at the validate-release job because gh release view cannot find draft releases. This is because the job only
    has contents: read permission, but GitHub requires contents: write
    to view draft releases.

    See failed run:
    https://github.com/astral-sh/setup-uv/actions/runs/24528604608

    Fix

    Bump validate-release job permissions from contents: read to
    contents: write, matching the release job which already has this
    permission.

    Downloads