mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-01-20 00:58:20 +08:00
49df72dfcf
This PR adjusts the action so that it is no longer necessary to
explicitly specify the GitHub token to circumvent the API rate limit.
To this end, it simply passes the repository's GitHub token (available
via `${{ github.token }}`) as a default for the `github_token` action
input.
This is similar to how this is handled in, e.g.,
https://github.com/peter-evans/create-pull-request; specifically
[here](5354f85616/action.yml (L4-L6)
).
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
name: "Python setup uv"
|
|
description: "Set up your GitHub Actions workflow with a specific version of uv"
|
|
author: "eifinger"
|
|
inputs:
|
|
version:
|
|
description: "The version of uv to install"
|
|
default: "latest"
|
|
checksum:
|
|
description: "The checksum of the uv version to install"
|
|
required: false
|
|
github-token:
|
|
description:
|
|
"Used to increase the rate limit when retrieving versions and downloading
|
|
uv."
|
|
required: false
|
|
default: ${{ github.token }}
|
|
enable-cache:
|
|
description: "Enable caching of the uv cache"
|
|
default: "false"
|
|
cache-dependency-glob:
|
|
description:
|
|
'Glob pattern to match files relative to the repository root to control
|
|
the cache. e.g. "uv.lock"'
|
|
required: false
|
|
cache-suffix:
|
|
description: "Suffix for the cache key"
|
|
required: false
|
|
cache-local-path:
|
|
description: "Local path to store the cache."
|
|
default: ""
|
|
outputs:
|
|
uv-version:
|
|
description: "The installed uv version. Useful when using latest."
|
|
cache-hit:
|
|
description: "A boolean value to indicate a cache entry was found"
|
|
runs:
|
|
using: "node20"
|
|
main: "dist/setup/index.js"
|
|
post: "dist/save-cache/index.js"
|
|
post-if: success()
|
|
branding:
|
|
icon: "package"
|
|
color: "blue"
|