Change Prettier settings (#36)

## Summary

I know this is a little tedious but I'd prefer to use the same settings
as in Ruff.
This commit is contained in:
Charlie Marsh 2024-09-05 08:06:45 -04:00 committed by GitHub
parent 1785c7bde0
commit 182c9c7e92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
32 changed files with 5536 additions and 5497 deletions

20
.editorconfig Normal file
View File

@ -0,0 +1,20 @@
# Check http://editorconfig.org for more information
# This is the main config file for this project:
root = true
[*]
charset = utf-8
trim_trailing_whitespace = true
end_of_line = lf
indent_style = space
insert_final_newline = true
indent_size = 2
[*.{rs,py,pyi}]
indent_size = 4
[*.snap]
trim_trailing_whitespace = false
[*.md]
max_line_length = 100

View File

@ -17,7 +17,7 @@
"@typescript-eslint/no-unused-vars": "error", "@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-member-accessibility": [ "@typescript-eslint/explicit-member-accessibility": [
"error", "error",
{"accessibility": "no-public"} { "accessibility": "no-public" }
], ],
"@typescript-eslint/no-require-imports": "error", "@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/array-type": "error", "@typescript-eslint/array-type": "error",
@ -27,7 +27,7 @@
"@typescript-eslint/consistent-type-assertions": "error", "@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/explicit-function-return-type": [ "@typescript-eslint/explicit-function-return-type": [
"error", "error",
{"allowExpressions": true} { "allowExpressions": true }
], ],
"@typescript-eslint/func-call-spacing": ["error", "never"], "@typescript-eslint/func-call-spacing": ["error", "never"],
"@typescript-eslint/no-array-constructor": "error", "@typescript-eslint/no-array-constructor": "error",
@ -50,8 +50,6 @@
"@typescript-eslint/promise-function-async": "error", "@typescript-eslint/promise-function-async": "error",
"@typescript-eslint/require-array-sort-compare": "error", "@typescript-eslint/require-array-sort-compare": "error",
"@typescript-eslint/restrict-plus-operands": "error", "@typescript-eslint/restrict-plus-operands": "error",
"semi": "off",
"@typescript-eslint/semi": ["error", "never"],
"@typescript-eslint/type-annotation-spacing": "error", "@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": "error" "@typescript-eslint/unbound-method": "error"
}, },

2
.gitattributes vendored
View File

@ -1,2 +1,2 @@
* text=auto eol=lf * text=auto eol=lf
dist/** -diff linguist-generated=true dist/** -diff linguist-generated=true

View File

@ -1,48 +1,48 @@
name-template: 'v$RESOLVED_VERSION 🌈' name-template: "v$RESOLVED_VERSION 🌈"
tag-template: 'v$RESOLVED_VERSION' tag-template: "v$RESOLVED_VERSION"
categories: categories:
- title: '🚨 Breaking changes' - title: "🚨 Breaking changes"
labels: labels:
- 'breaking-change' - "breaking-change"
- title: '✨ New features' - title: "✨ New features"
labels: labels:
- 'new-feature' - "new-feature"
- title: '🐛 Bug fixes' - title: "🐛 Bug fixes"
labels: labels:
- 'bugfix' - "bugfix"
- title: '🚀 Enhancements' - title: "🚀 Enhancements"
labels: labels:
- 'enhancement' - "enhancement"
- 'refactor' - "refactor"
- 'performance' - "performance"
- title: '🧰 Maintenance' - title: "🧰 Maintenance"
labels: labels:
- 'maintenance' - "maintenance"
- 'ci' - "ci"
- 'default-version-update' - "default-version-update"
- title: '📚 Documentation' - title: "📚 Documentation"
labels: labels:
- 'documentation' - "documentation"
- title: '⬆️ Dependency updates' - title: "⬆️ Dependency updates"
labels: labels:
- 'dependencies' - "dependencies"
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver: version-resolver:
major: major:
labels: labels:
- 'major' - "major"
- 'breaking-change' - "breaking-change"
minor: minor:
labels: labels:
- 'minor' - "minor"
- 'new-feature' - "new-feature"
- 'enhancement' - "enhancement"
patch: patch:
labels: labels:
- 'patch' - "patch"
- 'bugfix' - "bugfix"
- 'default-version-update' - "default-version-update"
default: patch default: patch
template: | template: |
## Changes ## Changes

View File

@ -10,10 +10,10 @@ on:
branches: branches:
- main - main
paths-ignore: paths-ignore:
- '**.md' - "**.md"
pull_request: pull_request:
paths-ignore: paths-ignore:
- '**.md' - "**.md"
workflow_dispatch: workflow_dispatch:
jobs: jobs:

View File

@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of # the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages. # supported CodeQL languages.
# #
name: 'CodeQL' name: "CodeQL"
on: on:
push: push:
@ -18,7 +18,7 @@ on:
# The branches below must be a subset of the branches above # The branches below must be a subset of the branches above
branches: [main] branches: [main]
schedule: schedule:
- cron: '31 7 * * 3' - cron: "31 7 * * 3"
jobs: jobs:
analyze: analyze:
@ -32,7 +32,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
language: ['TypeScript'] language: ["TypeScript"]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support # Learn more about CodeQL language support at https://git.io/codeql-language-support

View File

@ -1,4 +1,4 @@
name: 'test-cache-windows' name: "test-cache-windows"
on: on:
pull_request: pull_request:
push: push:

View File

@ -1,4 +1,4 @@
name: 'test-cache' name: "test-cache"
on: on:
pull_request: pull_request:
push: push:

View File

@ -1,4 +1,4 @@
name: 'test-windows' name: "test-windows"
on: on:
pull_request: pull_request:
push: push:

View File

@ -1,4 +1,4 @@
name: 'test' name: "test"
on: on:
pull_request: pull_request:
push: push:
@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
node-version: '20' node-version: "20"
- run: | - run: |
npm install npm install
- run: | - run: |
@ -42,7 +42,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, macos-14, oracle-aarch64] os: [ubuntu-latest, macos-latest, macos-14, oracle-aarch64]
uv-version: ['latest', '0.3.0', '0.3.2'] uv-version: ["latest", "0.3.0", "0.3.2"]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install version ${{ matrix.uv-version }} - name: Install version ${{ matrix.uv-version }}
@ -58,19 +58,19 @@ jobs:
matrix: matrix:
os: [ubuntu-latest, oracle-aarch64] os: [ubuntu-latest, oracle-aarch64]
checksum: checksum:
['4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd'] ["4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd"]
exclude: exclude:
- os: oracle-aarch64 - os: oracle-aarch64
checksum: '4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd' checksum: "4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd"
include: include:
- os: oracle-aarch64 - os: oracle-aarch64
checksum: 'e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8' checksum: "e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8"
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Checksum matches expected - name: Checksum matches expected
uses: ./ uses: ./
with: with:
version: '0.3.2' version: "0.3.2"
checksum: ${{ matrix.checksum }} checksum: ${{ matrix.checksum }}
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
test-without-github-token: test-without-github-token:

View File

@ -1,4 +1,4 @@
name: 'Update default version and checksums' name: "Update default version and checksums"
on: on:
workflow_dispatch: workflow_dispatch:
@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
node-version: '20' node-version: "20"
- name: Update default version and checksums - name: Update default version and checksums
id: update-default-version id: update-default-version
run: run:
@ -20,14 +20,14 @@ jobs:
- name: Create Pull Request - name: Create Pull Request
uses: peter-evans/create-pull-request@4320041ed380b20e97d388d56a7fb4f9b8c20e79 # v7.0.0 uses: peter-evans/create-pull-request@4320041ed380b20e97d388d56a7fb4f9b8c20e79 # v7.0.0
with: with:
commit-message: 'chore: update checksums' commit-message: "chore: update checksums"
title: title:
'chore: update default version to ${{ "chore: update default version to ${{
steps.update-default-version.outputs.latest-version }}' steps.update-default-version.outputs.latest-version }}"
body: body:
'chore: update default version to ${{ "chore: update default version to ${{
steps.update-default-version.outputs.latest-version }}' steps.update-default-version.outputs.latest-version }}"
base: main base: main
labels: 'automated-pr,default-version-update' labels: "automated-pr,default-version-update"
branch: update-default-version-pr branch: update-default-version-pr
delete-branch: true delete-branch: true

View File

@ -5,9 +5,9 @@ name: Update Major Minor Tags
on: on:
push: push:
branches-ignore: branches-ignore:
- '**' - "**"
tags: tags:
- 'v*.*.*' - "v*.*.*"
jobs: jobs:
update_major_minor_tags: update_major_minor_tags:

View File

@ -1,11 +1,4 @@
{ {
"printWidth": 80, "trailingComma": "all",
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid",
"proseWrap": "always" "proseWrap": "always"
} }

View File

@ -23,7 +23,8 @@ Set up your GitHub Actions workflow with a specific version of [uv](https://docs
## Usage ## Usage
Example workflow in a real world project can be found [here](https://github.com/eifinger/hass-weenect/blob/main/.github/workflows/ci.yml) Example workflow in a real world project can be found
[here](https://github.com/eifinger/hass-weenect/blob/main/.github/workflows/ci.yml)
### Install specific version ### Install specific version
@ -33,47 +34,46 @@ You can also specify a specific version of uv
- name: Install a specific version - name: Install a specific version
uses: astral-sh/setup-uv@v1 uses: astral-sh/setup-uv@v1
with: with:
version: '0.4.4' version: "0.4.4"
``` ```
### Install latest version ### Install latest version
By default this action installs the version defined as `default` in `action.yml`. By default this action installs the version defined as `default` in `action.yml`. This gets
This gets automatically updated in a new release of this action when a new version of uv is released. automatically updated in a new release of this action when a new version of uv is released. If you
If you don't want to wait for a new release of this action you can use `version: latest`. don't want to wait for a new release of this action you can use `version: latest`.
> [!WARNING] > [!WARNING]
> Using the `latest` version means that the uv executable gets downloaded every single time instead of loaded from the tools cache. > Using the `latest` version means that the uv executable gets downloaded every single time instead
> This can take up to 20s depending on the download speed. > of loaded from the tools cache. This can take up to 20s depending on the download speed. This does
> This does not affect the uv cache. > not affect the uv cache.
```yaml ```yaml
- name: Install a specific version - name: Install a specific version
uses: astral-sh/setup-uv@v1 uses: astral-sh/setup-uv@v1
with: with:
version: 'latest' version: "latest"
``` ```
### Validate checksum ### Validate checksum
You can also specify a checksum to validate the downloaded file. You can also specify a checksum to validate the downloaded file. Checksums up to the default version
Checksums up to the default version are automatically verified by this action. are automatically verified by this action. The sha265 hashes can be found on the
The sha265 hashes can be found on the [releases page](https://github.com/astral-sh/uv/releases) [releases page](https://github.com/astral-sh/uv/releases) of the uv repo.
of the uv repo.
```yaml ```yaml
- name: Install a specific version and validate the checksum - name: Install a specific version and validate the checksum
uses: astral-sh/setup-uv@v1 uses: astral-sh/setup-uv@v1
with: with:
version: '0.3.1' version: "0.3.1"
checksum: 'e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8' checksum: "e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8"
``` ```
### Enable caching ### Enable caching
If you enable caching the [uv cache](https://docs.astral.sh/uv/concepts/cache/) will If you enable caching the [uv cache](https://docs.astral.sh/uv/concepts/cache/) will be cached to
be cached to the GitHub Actions Cache. This can speed up runs which can reuse the cache the GitHub Actions Cache. This can speed up runs which can reuse the cache by several minutes. The
by several minutes. The cache will always be reused on self-hosted runners. cache will always be reused on self-hosted runners.
You can optionally define a custom cache key suffix. You can optionally define a custom cache key suffix.
@ -83,11 +83,11 @@ You can optionally define a custom cache key suffix.
uses: astral-sh/setup-uv@v1 uses: astral-sh/setup-uv@v1
with: with:
enable-cache: true enable-cache: true
cache-suffix: 'optional-suffix' cache-suffix: "optional-suffix"
``` ```
When the cache was successfully restored the output `cache-hit` will be set to `true` and you can use it in subsequent steps. When the cache was successfully restored the output `cache-hit` will be set to `true` and you can
For the example above you can use it like this: use it in subsequent steps. For the example above you can use it like this:
```yaml ```yaml
- name: Do something if the cache was restored - name: Do something if the cache was restored
@ -105,21 +105,21 @@ you can specify the path with the `cache-local-path` input.
uses: astral-sh/setup-uv@v1 uses: astral-sh/setup-uv@v1
with: with:
enable-cache: true enable-cache: true
cache-local-path: '/path/to/cache' cache-local-path: "/path/to/cache"
``` ```
#### Cache dependency glob #### Cache dependency glob
If you want to control when the cache is invalidated you can specify a glob pattern with the `cache-dependency-glob` input. If you want to control when the cache is invalidated you can specify a glob pattern with the
The cache will be invalidated if any file matching the glob pattern changes. `cache-dependency-glob` input. The cache will be invalidated if any file matching the glob pattern
The glob matches files relative to the repository root. changes. The glob matches files relative to the repository root.
```yaml ```yaml
- name: Define a cache dependency glob - name: Define a cache dependency glob
uses: astral-sh/setup-uv@v1 uses: astral-sh/setup-uv@v1
with: with:
enable-cache: true enable-cache: true
cache-dependency-glob: 'uv.lock' cache-dependency-glob: "uv.lock"
``` ```
```yaml ```yaml
@ -127,12 +127,13 @@ The glob matches files relative to the repository root.
uses: astral-sh/setup-uv@v1 uses: astral-sh/setup-uv@v1
with: with:
enable-cache: true enable-cache: true
cache-dependency-glob: '**requirements*.txt' cache-dependency-glob: "**requirements*.txt"
``` ```
### API rate limit ### API rate limit
To avoid hitting the error `API rate limit exceeded` you can supply a GitHub token with the `github-token` input. To avoid hitting the error `API rate limit exceeded` you can supply a GitHub token with the
`github-token` input.
```yaml ```yaml
- name: Install uv and supply a GitHub token - name: Install uv and supply a GitHub token
@ -143,9 +144,12 @@ To avoid hitting the error `API rate limit exceeded` you can supply a GitHub tok
## How it works ## How it works
This action downloads uv from the releases of the [uv repo](https://github.com/astral-sh/uv) and uses the [GitHub Actions Toolkit](https://github.com/actions/toolkit) to cache it as a tool to speed up consecutive runs on self-hosted runners. This action downloads uv from the releases of the [uv repo](https://github.com/astral-sh/uv) and
uses the [GitHub Actions Toolkit](https://github.com/actions/toolkit) to cache it as a tool to speed
up consecutive runs on self-hosted runners.
The installed version of uv is then added to the runner path so other steps can just use it by calling `uv`. The installed version of uv is then added to the runner path so other steps can just use it by
calling `uv`.
## FAQ ## FAQ
@ -166,7 +170,8 @@ A simple example workflow could look like this:
run: uv run --frozen pytest run: uv run --frozen pytest
``` ```
If you want to have a specific python version installed you can use the command [`uv python install`](https://docs.astral.sh/uv/guides/install-python/): If you want to have a specific python version installed you can use the command
[`uv python install`](https://docs.astral.sh/uv/guides/install-python/):
```yaml ```yaml
- name: Install the latest version of uv - name: Install the latest version of uv
@ -179,10 +184,12 @@ If you want to have a specific python version installed you can use the command
### What is the default version? ### What is the default version?
By default, this action installs the version defined as `default` in `action.yml`. By default, this action installs the version defined as `default` in `action.yml`. When a new
When a new release of uv is published this triggers an automatic release of this action with the new version as `default`. release of uv is published this triggers an automatic release of this action with the new version as
`default`.
If you have to know the version installed for other steps of your workflow you can use the `uv-version` output: If you have to know the version installed for other steps of your workflow you can use the
`uv-version` output:
```yaml ```yaml
- name: Checkout the repository - name: Checkout the repository
@ -197,8 +204,9 @@ If you have to know the version installed for other steps of your workflow you c
## Acknowledgements ## Acknowledgements
`setup-uv` was initially written and published by [Kevin Stillhammer](https://github.com/eifinger) `setup-uv` was initially written and published by [Kevin Stillhammer](https://github.com/eifinger)
before moving under the official [Astral](https://github.com/astral-sh) GitHub organization. You before moving under the official [Astral](https://github.com/astral-sh) GitHub organization. You can
can support Kevin's work in open source on [Buy me a coffee](https://www.buymeacoffee.com/eifinger) or [PayPal](https://paypal.me/kevinstillhammer). support Kevin's work in open source on [Buy me a coffee](https://www.buymeacoffee.com/eifinger) or
[PayPal](https://paypal.me/kevinstillhammer).
## License ## License

View File

@ -1,37 +1,37 @@
import {expect, test, it} from '@jest/globals' import { expect, test, it } from "@jest/globals";
import { import {
isknownVersion, isknownVersion,
validateChecksum validateChecksum,
} from '../../../src/download/checksum/checksum' } from "../../../src/download/checksum/checksum";
test('checksum should match', async () => { test("checksum should match", async () => {
const validChecksum = const validChecksum =
'f3da96ec7e995debee7f5d52ecd034dfb7074309a1da42f76429ecb814d813a3' "f3da96ec7e995debee7f5d52ecd034dfb7074309a1da42f76429ecb814d813a3";
const filePath = '__tests__/fixtures/checksumfile' const filePath = "__tests__/fixtures/checksumfile";
// string params don't matter only test the checksum mechanism, not known checksums // string params don't matter only test the checksum mechanism, not known checksums
await validateChecksum( await validateChecksum(
validChecksum, validChecksum,
filePath, filePath,
'aarch64', "aarch64",
'pc-windows-msvc', "pc-windows-msvc",
'1.2.3' "1.2.3",
) );
}) });
type KnownVersionFixture = {version: string; known: boolean} type KnownVersionFixture = { version: string; known: boolean };
it.each<KnownVersionFixture>([ it.each<KnownVersionFixture>([
{ {
version: '0.3.0', version: "0.3.0",
known: true known: true,
}, },
{ {
version: '0.0.15', version: "0.0.15",
known: false known: false,
} },
])( ])(
'isknownVersion should return $known for version $version', "isknownVersion should return $known for version $version",
({version, known}) => { ({ version, known }) => {
expect(isknownVersion(version)).toBe(known) expect(isknownVersion(version)).toBe(known);
} },
) );

View File

@ -1,42 +1,42 @@
name: 'Python setup uv' name: "Python setup uv"
description: 'Set up your GitHub Actions workflow with a specific version of uv' description: "Set up your GitHub Actions workflow with a specific version of uv"
author: 'eifinger' author: "eifinger"
inputs: inputs:
version: version:
description: 'The version of uv to install' description: "The version of uv to install"
default: '0.4.4' default: "0.4.4"
checksum: checksum:
description: 'The checksum of the uv version to install' description: "The checksum of the uv version to install"
required: false required: false
github-token: github-token:
description: description:
'Used to increase the rate limit when retrieving versions and downloading "Used to increase the rate limit when retrieving versions and downloading
uv.' uv."
required: false required: false
enable-cache: enable-cache:
description: 'Enable caching of the uv cache' description: "Enable caching of the uv cache"
default: 'false' default: "false"
cache-dependency-glob: cache-dependency-glob:
description: description:
'Glob pattern to match files relative to the repository root to control 'Glob pattern to match files relative to the repository root to control
the cache. e.g. "uv.lock"' the cache. e.g. "uv.lock"'
required: false required: false
cache-suffix: cache-suffix:
description: 'Suffix for the cache key' description: "Suffix for the cache key"
required: false required: false
cache-local-path: cache-local-path:
description: 'Local path to store the cache.' description: "Local path to store the cache."
default: '/tmp/setup-uv-cache' default: "/tmp/setup-uv-cache"
outputs: outputs:
uv-version: uv-version:
description: 'The installed uv version. Useful when using latest.' description: "The installed uv version. Useful when using latest."
cache-hit: cache-hit:
description: 'A boolean value to indicate a cache entry was found' description: "A boolean value to indicate a cache entry was found"
runs: runs:
using: 'node20' using: "node20"
main: 'dist/setup/index.js' main: "dist/setup/index.js"
post: 'dist/save-cache/index.js' post: "dist/save-cache/index.js"
post-if: success() post-if: success()
branding: branding:
icon: 'package' icon: "package"
color: 'blue' color: "blue"

60
dist/save-cache/index.js generated vendored
View File

@ -82795,9 +82795,9 @@ const core = __importStar(__nccwpck_require__(2186));
const path_1 = __importDefault(__nccwpck_require__(1017)); const path_1 = __importDefault(__nccwpck_require__(1017));
const inputs_1 = __nccwpck_require__(9378); const inputs_1 = __nccwpck_require__(9378);
const platforms_1 = __nccwpck_require__(6005); const platforms_1 = __nccwpck_require__(6005);
exports.STATE_CACHE_KEY = 'cache-key'; exports.STATE_CACHE_KEY = "cache-key";
exports.STATE_CACHE_MATCHED_KEY = 'cache-matched-key'; exports.STATE_CACHE_MATCHED_KEY = "cache-matched-key";
const CACHE_VERSION = '1'; const CACHE_VERSION = "1";
function restoreCache(version) { function restoreCache(version) {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const cacheKey = yield computeKeys(version); const cacheKey = yield computeKeys(version);
@ -82809,7 +82809,7 @@ function restoreCache(version) {
catch (err) { catch (err) {
const message = err.message; const message = err.message;
core.warning(message); core.warning(message);
core.setOutput('cache-hit', false); core.setOutput("cache-hit", false);
return; return;
} }
core.saveState(exports.STATE_CACHE_KEY, cacheKey); core.saveState(exports.STATE_CACHE_KEY, cacheKey);
@ -82819,30 +82819,30 @@ function restoreCache(version) {
exports.restoreCache = restoreCache; exports.restoreCache = restoreCache;
function computeKeys(version) { function computeKeys(version) {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
let cacheDependencyPathHash = '-'; let cacheDependencyPathHash = "-";
if (inputs_1.cacheDependencyGlob !== '') { if (inputs_1.cacheDependencyGlob !== "") {
const fullCacheDependencyGlob = `${process.env['GITHUB_WORKSPACE']}${path_1.default.sep}${inputs_1.cacheDependencyGlob}`; const fullCacheDependencyGlob = `${process.env["GITHUB_WORKSPACE"]}${path_1.default.sep}${inputs_1.cacheDependencyGlob}`;
cacheDependencyPathHash += yield glob.hashFiles(fullCacheDependencyGlob); cacheDependencyPathHash += yield glob.hashFiles(fullCacheDependencyGlob);
if (cacheDependencyPathHash === '-') { if (cacheDependencyPathHash === "-") {
throw new Error(`No file in ${process.cwd()} matched to [${inputs_1.cacheDependencyGlob}], make sure you have checked out the target repository`); throw new Error(`No file in ${process.cwd()} matched to [${inputs_1.cacheDependencyGlob}], make sure you have checked out the target repository`);
} }
} }
else { else {
cacheDependencyPathHash += 'no-dependency-glob'; cacheDependencyPathHash += "no-dependency-glob";
} }
const suffix = inputs_1.cacheSuffix ? `-${inputs_1.cacheSuffix}` : ''; const suffix = inputs_1.cacheSuffix ? `-${inputs_1.cacheSuffix}` : "";
return `setup-uv-${CACHE_VERSION}-${(0, platforms_1.getArch)()}-${(0, platforms_1.getPlatform)()}-${version}${cacheDependencyPathHash}${suffix}`; return `setup-uv-${CACHE_VERSION}-${(0, platforms_1.getArch)()}-${(0, platforms_1.getPlatform)()}-${version}${cacheDependencyPathHash}${suffix}`;
}); });
} }
function handleMatchResult(matchedKey, primaryKey) { function handleMatchResult(matchedKey, primaryKey) {
if (!matchedKey) { if (!matchedKey) {
core.info(`No GitHub Actions cache found for key: ${primaryKey}`); core.info(`No GitHub Actions cache found for key: ${primaryKey}`);
core.setOutput('cache-hit', false); core.setOutput("cache-hit", false);
return; return;
} }
core.saveState(exports.STATE_CACHE_MATCHED_KEY, matchedKey); core.saveState(exports.STATE_CACHE_MATCHED_KEY, matchedKey);
core.info(`uv cache restored from GitHub Actions cache with key: ${matchedKey}`); core.info(`uv cache restored from GitHub Actions cache with key: ${matchedKey}`);
core.setOutput('cache-hit', true); core.setOutput("cache-hit", true);
} }
@ -82912,7 +82912,7 @@ function saveCache() {
const cacheKey = core.getState(restore_cache_1.STATE_CACHE_KEY); const cacheKey = core.getState(restore_cache_1.STATE_CACHE_KEY);
const matchedKey = core.getState(restore_cache_1.STATE_CACHE_MATCHED_KEY); const matchedKey = core.getState(restore_cache_1.STATE_CACHE_MATCHED_KEY);
if (!cacheKey) { if (!cacheKey) {
core.warning('Error retrieving cache key from state.'); core.warning("Error retrieving cache key from state.");
return; return;
} }
else if (matchedKey === cacheKey) { else if (matchedKey === cacheKey) {
@ -82928,11 +82928,11 @@ function saveCache() {
function pruneCache() { function pruneCache() {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const options = { const options = {
silent: !core.isDebug() silent: !core.isDebug(),
}; };
const execArgs = ['cache', 'prune', '--ci']; const execArgs = ["cache", "prune", "--ci"];
core.info('Pruning cache...'); core.info("Pruning cache...");
yield exec.exec('uv', execArgs, options); yield exec.exec("uv", execArgs, options);
}); });
} }
run(); run();
@ -82971,13 +82971,13 @@ var __importStar = (this && this.__importStar) || function (mod) {
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.cacheDependencyGlob = exports.githubToken = exports.cacheLocalPath = exports.cacheSuffix = exports.enableCache = exports.checkSum = exports.version = void 0; exports.cacheDependencyGlob = exports.githubToken = exports.cacheLocalPath = exports.cacheSuffix = exports.enableCache = exports.checkSum = exports.version = void 0;
const core = __importStar(__nccwpck_require__(2186)); const core = __importStar(__nccwpck_require__(2186));
exports.version = core.getInput('version'); exports.version = core.getInput("version");
exports.checkSum = core.getInput('checksum'); exports.checkSum = core.getInput("checksum");
exports.enableCache = core.getInput('enable-cache') === 'true'; exports.enableCache = core.getInput("enable-cache") === "true";
exports.cacheSuffix = core.getInput('cache-suffix') || ''; exports.cacheSuffix = core.getInput("cache-suffix") || "";
exports.cacheLocalPath = core.getInput('cache-local-path'); exports.cacheLocalPath = core.getInput("cache-local-path");
exports.githubToken = core.getInput('github-token'); exports.githubToken = core.getInput("github-token");
exports.cacheDependencyGlob = core.getInput('cache-dependency-glob'); exports.cacheDependencyGlob = core.getInput("cache-dependency-glob");
/***/ }), /***/ }),
@ -82992,9 +82992,9 @@ exports.getPlatform = exports.getArch = void 0;
function getArch() { function getArch() {
const arch = process.arch; const arch = process.arch;
const archMapping = { const archMapping = {
ia32: 'i686', ia32: "i686",
x64: 'x86_64', x64: "x86_64",
arm64: 'aarch64' arm64: "aarch64",
}; };
if (arch in archMapping) { if (arch in archMapping) {
return archMapping[arch]; return archMapping[arch];
@ -83004,9 +83004,9 @@ exports.getArch = getArch;
function getPlatform() { function getPlatform() {
const platform = process.platform; const platform = process.platform;
const platformMapping = { const platformMapping = {
linux: 'unknown-linux-gnu', linux: "unknown-linux-gnu",
darwin: 'apple-darwin', darwin: "apple-darwin",
win32: 'pc-windows-msvc' win32: "pc-windows-msvc",
}; };
if (platform in platformMapping) { if (platform in platformMapping) {
return platformMapping[platform]; return platformMapping[platform];

3410
dist/setup/index.js generated vendored

File diff suppressed because it is too large Load Diff

38
dist/update-default-version/index.js generated vendored
View File

@ -32713,34 +32713,34 @@ const tc = __importStar(__nccwpck_require__(7784));
function updateChecksums(filePath, downloadUrls) { function updateChecksums(filePath, downloadUrls) {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
yield fs_1.promises.rm(filePath); yield fs_1.promises.rm(filePath);
yield fs_1.promises.appendFile(filePath, '// AUTOGENERATED_DO_NOT_EDIT\nexport const KNOWN_CHECKSUMS: {[key: string]: string} = {\n'); yield fs_1.promises.appendFile(filePath, "// AUTOGENERATED_DO_NOT_EDIT\nexport const KNOWN_CHECKSUMS: {[key: string]: string} = {\n");
let firstLine = true; let firstLine = true;
for (const downloadUrl of downloadUrls) { for (const downloadUrl of downloadUrls) {
const content = yield downloadAssetContent(downloadUrl); const content = yield downloadAssetContent(downloadUrl);
const checksum = content.split(' ')[0].trim(); const checksum = content.split(" ")[0].trim();
const key = getKey(downloadUrl); const key = getKey(downloadUrl);
if (!firstLine) { if (!firstLine) {
yield fs_1.promises.appendFile(filePath, ',\n'); yield fs_1.promises.appendFile(filePath, ",\n");
} }
yield fs_1.promises.appendFile(filePath, ` '${key}':\n '${checksum}'`); yield fs_1.promises.appendFile(filePath, ` '${key}':\n '${checksum}'`);
firstLine = false; firstLine = false;
} }
yield fs_1.promises.appendFile(filePath, '}\n'); yield fs_1.promises.appendFile(filePath, "}\n");
}); });
} }
exports.updateChecksums = updateChecksums; exports.updateChecksums = updateChecksums;
function getKey(downloadUrl) { function getKey(downloadUrl) {
// https://github.com/astral-sh/uv/releases/download/0.3.2/uv-aarch64-apple-darwin.tar.gz.sha256 // https://github.com/astral-sh/uv/releases/download/0.3.2/uv-aarch64-apple-darwin.tar.gz.sha256
const parts = downloadUrl.split('/'); const parts = downloadUrl.split("/");
const fileName = parts[parts.length - 1]; const fileName = parts[parts.length - 1];
const name = fileName.split('.')[0].split('uv-')[1]; const name = fileName.split(".")[0].split("uv-")[1];
const version = parts[parts.length - 2]; const version = parts[parts.length - 2];
return `${name}-${version}`; return `${name}-${version}`;
} }
function downloadAssetContent(downloadUrl) { function downloadAssetContent(downloadUrl) {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const downloadPath = yield tc.downloadTool(downloadUrl); const downloadPath = yield tc.downloadTool(downloadUrl);
const content = yield fs_1.promises.readFile(downloadPath, 'utf8'); const content = yield fs_1.promises.readFile(downloadPath, "utf8");
return content; return content;
}); });
} }
@ -32808,16 +32808,16 @@ function run() {
const octokit = github.getOctokit(github_token); const octokit = github.getOctokit(github_token);
const response = yield octokit.paginate(octokit.rest.repos.listReleases, { const response = yield octokit.paginate(octokit.rest.repos.listReleases, {
owner: utils_1.OWNER, owner: utils_1.OWNER,
repo: utils_1.REPO repo: utils_1.REPO,
}); });
const downloadUrls = response.flatMap(release => release.assets const downloadUrls = response.flatMap((release) => release.assets
.filter(asset => asset.name.endsWith('.sha256')) .filter((asset) => asset.name.endsWith(".sha256"))
.map(asset => asset.browser_download_url)); .map((asset) => asset.browser_download_url));
yield (0, update_known_checksums_1.updateChecksums)(checksumFilePath, downloadUrls); yield (0, update_known_checksums_1.updateChecksums)(checksumFilePath, downloadUrls);
const latestVersion = response const latestVersion = response
.map(release => release.tag_name) .map((release) => release.tag_name)
.sort(semver.rcompare)[0]; .sort(semver.rcompare)[0];
core.setOutput('latest-version', latestVersion); core.setOutput("latest-version", latestVersion);
yield updateDefaultVersion(defaultVersionFilePath, latestVersion); yield updateDefaultVersion(defaultVersionFilePath, latestVersion);
}); });
} }
@ -32826,7 +32826,7 @@ function updateDefaultVersion(filePath, latestVersion) {
var _a, e_1, _b, _c; var _a, e_1, _b, _c;
const fileStream = (0, fs_1.createReadStream)(filePath); const fileStream = (0, fs_1.createReadStream)(filePath);
const rl = readline.createInterface({ const rl = readline.createInterface({
input: fileStream input: fileStream,
}); });
let foundDescription = false; let foundDescription = false;
const lines = []; const lines = [];
@ -32839,7 +32839,7 @@ function updateDefaultVersion(filePath, latestVersion) {
line.includes("description: 'The version of uv to install'")) { line.includes("description: 'The version of uv to install'")) {
foundDescription = true; foundDescription = true;
} }
else if (foundDescription && line.includes('default: ')) { else if (foundDescription && line.includes("default: ")) {
line = line.replace(/'[^']*'/, `'${latestVersion}'`); line = line.replace(/'[^']*'/, `'${latestVersion}'`);
foundDescription = false; foundDescription = false;
} }
@ -32853,7 +32853,7 @@ function updateDefaultVersion(filePath, latestVersion) {
} }
finally { if (e_1) throw e_1.error; } finally { if (e_1) throw e_1.error; }
} }
yield fs_1.promises.writeFile(filePath, lines.join('\n')); yield fs_1.promises.writeFile(filePath, lines.join("\n"));
}); });
} }
run(); run();
@ -32868,9 +32868,9 @@ run();
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.TOOL_CACHE_NAME = exports.OWNER = exports.REPO = void 0; exports.TOOL_CACHE_NAME = exports.OWNER = exports.REPO = void 0;
exports.REPO = 'uv'; exports.REPO = "uv";
exports.OWNER = 'astral-sh'; exports.OWNER = "astral-sh";
exports.TOOL_CACHE_NAME = 'uv'; exports.TOOL_CACHE_NAME = "uv";
/***/ }), /***/ }),

View File

@ -1,9 +1,9 @@
module.exports = { module.exports = {
clearMocks: true, clearMocks: true,
moduleFileExtensions: ['js', 'ts'], moduleFileExtensions: ["js", "ts"],
testMatch: ['**/*.test.ts'], testMatch: ["**/*.test.ts"],
transform: { transform: {
'^.+\\.ts$': 'ts-jest' "^.+\\.ts$": "ts-jest",
}, },
verbose: true verbose: true,
} };

View File

@ -1,65 +1,69 @@
import * as cache from '@actions/cache' import * as cache from "@actions/cache";
import * as glob from '@actions/glob' import * as glob from "@actions/glob";
import * as core from '@actions/core' import * as core from "@actions/core";
import path from 'path' import path from "path";
import {cacheDependencyGlob, cacheLocalPath, cacheSuffix} from '../utils/inputs' import {
import {getArch, getPlatform} from '../utils/platforms' cacheDependencyGlob,
cacheLocalPath,
cacheSuffix,
} from "../utils/inputs";
import { getArch, getPlatform } from "../utils/platforms";
export const STATE_CACHE_KEY = 'cache-key' export const STATE_CACHE_KEY = "cache-key";
export const STATE_CACHE_MATCHED_KEY = 'cache-matched-key' export const STATE_CACHE_MATCHED_KEY = "cache-matched-key";
const CACHE_VERSION = '1' const CACHE_VERSION = "1";
export async function restoreCache(version: string): Promise<void> { export async function restoreCache(version: string): Promise<void> {
const cacheKey = await computeKeys(version) const cacheKey = await computeKeys(version);
let matchedKey: string | undefined let matchedKey: string | undefined;
core.info( core.info(
`Trying to restore uv cache from GitHub Actions cache with key: ${cacheKey}` `Trying to restore uv cache from GitHub Actions cache with key: ${cacheKey}`,
) );
try { try {
matchedKey = await cache.restoreCache([cacheLocalPath], cacheKey) matchedKey = await cache.restoreCache([cacheLocalPath], cacheKey);
} catch (err) { } catch (err) {
const message = (err as Error).message const message = (err as Error).message;
core.warning(message) core.warning(message);
core.setOutput('cache-hit', false) core.setOutput("cache-hit", false);
return return;
} }
core.saveState(STATE_CACHE_KEY, cacheKey) core.saveState(STATE_CACHE_KEY, cacheKey);
handleMatchResult(matchedKey, cacheKey) handleMatchResult(matchedKey, cacheKey);
} }
async function computeKeys(version: string): Promise<string> { async function computeKeys(version: string): Promise<string> {
let cacheDependencyPathHash = '-' let cacheDependencyPathHash = "-";
if (cacheDependencyGlob !== '') { if (cacheDependencyGlob !== "") {
const fullCacheDependencyGlob = `${process.env['GITHUB_WORKSPACE']}${path.sep}${cacheDependencyGlob}` const fullCacheDependencyGlob = `${process.env["GITHUB_WORKSPACE"]}${path.sep}${cacheDependencyGlob}`;
cacheDependencyPathHash += await glob.hashFiles(fullCacheDependencyGlob) cacheDependencyPathHash += await glob.hashFiles(fullCacheDependencyGlob);
if (cacheDependencyPathHash === '-') { if (cacheDependencyPathHash === "-") {
throw new Error( throw new Error(
`No file in ${process.cwd()} matched to [${cacheDependencyGlob}], make sure you have checked out the target repository` `No file in ${process.cwd()} matched to [${cacheDependencyGlob}], make sure you have checked out the target repository`,
) );
} }
} else { } else {
cacheDependencyPathHash += 'no-dependency-glob' cacheDependencyPathHash += "no-dependency-glob";
} }
const suffix = cacheSuffix ? `-${cacheSuffix}` : '' const suffix = cacheSuffix ? `-${cacheSuffix}` : "";
return `setup-uv-${CACHE_VERSION}-${getArch()}-${getPlatform()}-${version}${cacheDependencyPathHash}${suffix}` return `setup-uv-${CACHE_VERSION}-${getArch()}-${getPlatform()}-${version}${cacheDependencyPathHash}${suffix}`;
} }
function handleMatchResult( function handleMatchResult(
matchedKey: string | undefined, matchedKey: string | undefined,
primaryKey: string primaryKey: string,
): void { ): void {
if (!matchedKey) { if (!matchedKey) {
core.info(`No GitHub Actions cache found for key: ${primaryKey}`) core.info(`No GitHub Actions cache found for key: ${primaryKey}`);
core.setOutput('cache-hit', false) core.setOutput("cache-hit", false);
return return;
} }
core.saveState(STATE_CACHE_MATCHED_KEY, matchedKey) core.saveState(STATE_CACHE_MATCHED_KEY, matchedKey);
core.info( core.info(
`uv cache restored from GitHub Actions cache with key: ${matchedKey}` `uv cache restored from GitHub Actions cache with key: ${matchedKey}`,
) );
core.setOutput('cache-hit', true) core.setOutput("cache-hit", true);
} }

View File

@ -1,55 +1,55 @@
import * as fs from 'fs' import * as fs from "fs";
import * as crypto from 'crypto' import * as crypto from "crypto";
import * as core from '@actions/core' import * as core from "@actions/core";
import {KNOWN_CHECKSUMS} from './known-checksums' import { KNOWN_CHECKSUMS } from "./known-checksums";
import {Architecture, Platform} from '../../utils/platforms' import { Architecture, Platform } from "../../utils/platforms";
export async function validateChecksum( export async function validateChecksum(
checkSum: string | undefined, checkSum: string | undefined,
downloadPath: string, downloadPath: string,
arch: Architecture, arch: Architecture,
platform: Platform, platform: Platform,
version: string version: string,
): Promise<void> { ): Promise<void> {
let isValid = true let isValid = true;
if (checkSum !== undefined && checkSum !== '') { if (checkSum !== undefined && checkSum !== "") {
isValid = await validateFileCheckSum(downloadPath, checkSum) isValid = await validateFileCheckSum(downloadPath, checkSum);
} else { } else {
core.debug(`Checksum not provided. Checking known checksums.`) core.debug(`Checksum not provided. Checking known checksums.`);
const key = `${arch}-${platform}-${version}` const key = `${arch}-${platform}-${version}`;
if (key in KNOWN_CHECKSUMS) { if (key in KNOWN_CHECKSUMS) {
const knownChecksum = KNOWN_CHECKSUMS[`${arch}-${platform}-${version}`] const knownChecksum = KNOWN_CHECKSUMS[`${arch}-${platform}-${version}`];
core.debug(`Checking checksum for ${arch}-${platform}-${version}.`) core.debug(`Checking checksum for ${arch}-${platform}-${version}.`);
isValid = await validateFileCheckSum(downloadPath, knownChecksum) isValid = await validateFileCheckSum(downloadPath, knownChecksum);
} else { } else {
core.debug(`No known checksum found for ${key}.`) core.debug(`No known checksum found for ${key}.`);
} }
} }
if (!isValid) { if (!isValid) {
throw new Error(`Checksum for ${downloadPath} did not match ${checkSum}.`) throw new Error(`Checksum for ${downloadPath} did not match ${checkSum}.`);
} }
core.debug(`Checksum for ${downloadPath} is valid.`) core.debug(`Checksum for ${downloadPath} is valid.`);
} }
async function validateFileCheckSum( async function validateFileCheckSum(
filePath: string, filePath: string,
expected: string expected: string,
): Promise<boolean> { ): Promise<boolean> {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
const hash = crypto.createHash('sha256') const hash = crypto.createHash("sha256");
const stream = fs.createReadStream(filePath) const stream = fs.createReadStream(filePath);
stream.on('error', err => reject(err)) stream.on("error", (err) => reject(err));
stream.on('data', chunk => hash.update(chunk)) stream.on("data", (chunk) => hash.update(chunk));
stream.on('end', () => { stream.on("end", () => {
const actual = hash.digest('hex') const actual = hash.digest("hex");
resolve(actual === expected) resolve(actual === expected);
}) });
}) });
} }
export function isknownVersion(version: string): boolean { export function isknownVersion(version: string): boolean {
const pattern = new RegExp(`^.*-.*-${version}$`) const pattern = new RegExp(`^.*-.*-${version}$`);
return Object.keys(KNOWN_CHECKSUMS).some(key => pattern.test(key)) return Object.keys(KNOWN_CHECKSUMS).some((key) => pattern.test(key));
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,39 +1,39 @@
import {promises as fs} from 'fs' import { promises as fs } from "fs";
import * as tc from '@actions/tool-cache' import * as tc from "@actions/tool-cache";
export async function updateChecksums( export async function updateChecksums(
filePath: string, filePath: string,
downloadUrls: string[] downloadUrls: string[],
): Promise<void> { ): Promise<void> {
await fs.rm(filePath) await fs.rm(filePath);
await fs.appendFile( await fs.appendFile(
filePath, filePath,
'// AUTOGENERATED_DO_NOT_EDIT\nexport const KNOWN_CHECKSUMS: {[key: string]: string} = {\n' "// AUTOGENERATED_DO_NOT_EDIT\nexport const KNOWN_CHECKSUMS: {[key: string]: string} = {\n",
) );
let firstLine = true let firstLine = true;
for (const downloadUrl of downloadUrls) { for (const downloadUrl of downloadUrls) {
const content = await downloadAssetContent(downloadUrl) const content = await downloadAssetContent(downloadUrl);
const checksum = content.split(' ')[0].trim() const checksum = content.split(" ")[0].trim();
const key = getKey(downloadUrl) const key = getKey(downloadUrl);
if (!firstLine) { if (!firstLine) {
await fs.appendFile(filePath, ',\n') await fs.appendFile(filePath, ",\n");
} }
await fs.appendFile(filePath, ` '${key}':\n '${checksum}'`) await fs.appendFile(filePath, ` '${key}':\n '${checksum}'`);
firstLine = false firstLine = false;
} }
await fs.appendFile(filePath, '}\n') await fs.appendFile(filePath, "}\n");
} }
function getKey(downloadUrl: string): string { function getKey(downloadUrl: string): string {
// https://github.com/astral-sh/uv/releases/download/0.3.2/uv-aarch64-apple-darwin.tar.gz.sha256 // https://github.com/astral-sh/uv/releases/download/0.3.2/uv-aarch64-apple-darwin.tar.gz.sha256
const parts = downloadUrl.split('/') const parts = downloadUrl.split("/");
const fileName = parts[parts.length - 1] const fileName = parts[parts.length - 1];
const name = fileName.split('.')[0].split('uv-')[1] const name = fileName.split(".")[0].split("uv-")[1];
const version = parts[parts.length - 2] const version = parts[parts.length - 2];
return `${name}-${version}` return `${name}-${version}`;
} }
async function downloadAssetContent(downloadUrl: string): Promise<string> { async function downloadAssetContent(downloadUrl: string): Promise<string> {
const downloadPath = await tc.downloadTool(downloadUrl) const downloadPath = await tc.downloadTool(downloadUrl);
const content = await fs.readFile(downloadPath, 'utf8') const content = await fs.readFile(downloadPath, "utf8");
return content return content;
} }

View File

@ -1,47 +1,52 @@
import * as core from '@actions/core' import * as core from "@actions/core";
import * as tc from '@actions/tool-cache' import * as tc from "@actions/tool-cache";
import * as exec from '@actions/exec' import * as exec from "@actions/exec";
import * as path from 'path' import * as path from "path";
import {Architecture, Platform} from '../utils/platforms' import { Architecture, Platform } from "../utils/platforms";
import {validateChecksum} from './checksum/checksum' import { validateChecksum } from "./checksum/checksum";
import {OWNER, REPO, TOOL_CACHE_NAME} from '../utils/utils' import { OWNER, REPO, TOOL_CACHE_NAME } from "../utils/utils";
export async function downloadLatest( export async function downloadLatest(
platform: Platform, platform: Platform,
arch: Architecture, arch: Architecture,
checkSum: string | undefined, checkSum: string | undefined,
githubToken: string | undefined githubToken: string | undefined,
): Promise<{cachedToolDir: string; version: string}> { ): Promise<{ cachedToolDir: string; version: string }> {
const artifact = `uv-${arch}-${platform}` const artifact = `uv-${arch}-${platform}`;
let downloadUrl = `https://github.com/${OWNER}/${REPO}/releases/latest/download/${artifact}` let downloadUrl = `https://github.com/${OWNER}/${REPO}/releases/latest/download/${artifact}`;
if (platform === 'pc-windows-msvc') { if (platform === "pc-windows-msvc") {
downloadUrl += '.zip' downloadUrl += ".zip";
} else { } else {
downloadUrl += '.tar.gz' downloadUrl += ".tar.gz";
} }
core.info(`Downloading uv from "${downloadUrl}" ...`) core.info(`Downloading uv from "${downloadUrl}" ...`);
const downloadPath = await tc.downloadTool( const downloadPath = await tc.downloadTool(
downloadUrl, downloadUrl,
undefined, undefined,
githubToken githubToken,
) );
let uvExecutablePath: string let uvExecutablePath: string;
let uvDir: string let uvDir: string;
if (platform === 'pc-windows-msvc') { if (platform === "pc-windows-msvc") {
uvDir = await tc.extractZip(downloadPath) uvDir = await tc.extractZip(downloadPath);
// On windows extracting the zip does not create an intermediate directory // On windows extracting the zip does not create an intermediate directory
uvExecutablePath = path.join(uvDir, 'uv.exe') uvExecutablePath = path.join(uvDir, "uv.exe");
} else { } else {
const extractedDir = await tc.extractTar(downloadPath) const extractedDir = await tc.extractTar(downloadPath);
uvDir = path.join(extractedDir, artifact) uvDir = path.join(extractedDir, artifact);
uvExecutablePath = path.join(uvDir, 'uv') uvExecutablePath = path.join(uvDir, "uv");
} }
const version = await getVersion(uvExecutablePath) const version = await getVersion(uvExecutablePath);
await validateChecksum(checkSum, downloadPath, arch, platform, version) await validateChecksum(checkSum, downloadPath, arch, platform, version);
const cachedToolDir = await tc.cacheDir(uvDir, TOOL_CACHE_NAME, version, arch) const cachedToolDir = await tc.cacheDir(
uvDir,
TOOL_CACHE_NAME,
version,
arch,
);
return {cachedToolDir, version} return { cachedToolDir, version };
} }
async function getVersion(uvExecutablePath: string): Promise<string> { async function getVersion(uvExecutablePath: string): Promise<string> {
@ -50,17 +55,17 @@ async function getVersion(uvExecutablePath: string): Promise<string> {
// uv 0.3.1 (be17d132a 2024-08-21) // uv 0.3.1 (be17d132a 2024-08-21)
const options: exec.ExecOptions = { const options: exec.ExecOptions = {
silent: !core.isDebug() silent: !core.isDebug(),
} };
const execArgs = ['--version'] const execArgs = ["--version"];
let output = '' let output = "";
options.listeners = { options.listeners = {
stdout: (data: Buffer) => { stdout: (data: Buffer) => {
output += data.toString() output += data.toString();
} },
} };
await exec.exec(uvExecutablePath, execArgs, options) await exec.exec(uvExecutablePath, execArgs, options);
const parts = output.split(' ') const parts = output.split(" ");
return parts[1] return parts[1];
} }

View File

@ -1,18 +1,18 @@
import * as core from '@actions/core' import * as core from "@actions/core";
import * as tc from '@actions/tool-cache' import * as tc from "@actions/tool-cache";
import * as path from 'path' import * as path from "path";
import {OWNER, REPO, TOOL_CACHE_NAME} from '../utils/utils' import { OWNER, REPO, TOOL_CACHE_NAME } from "../utils/utils";
import {Architecture, Platform} from '../utils/platforms' import { Architecture, Platform } from "../utils/platforms";
import {validateChecksum} from './checksum/checksum' import { validateChecksum } from "./checksum/checksum";
export function tryGetFromToolCache( export function tryGetFromToolCache(
arch: Architecture, arch: Architecture,
version: string version: string,
): string | undefined { ): string | undefined {
core.debug(`Trying to get uv from tool cache for ${version}...`) core.debug(`Trying to get uv from tool cache for ${version}...`);
const cachedVersions = tc.findAllVersions(TOOL_CACHE_NAME, arch) const cachedVersions = tc.findAllVersions(TOOL_CACHE_NAME, arch);
core.debug(`Cached versions: ${cachedVersions}`) core.debug(`Cached versions: ${cachedVersions}`);
return tc.find(TOOL_CACHE_NAME, version, arch) return tc.find(TOOL_CACHE_NAME, version, arch);
} }
export async function downloadVersion( export async function downloadVersion(
@ -20,32 +20,32 @@ export async function downloadVersion(
arch: Architecture, arch: Architecture,
version: string, version: string,
checkSum: string | undefined, checkSum: string | undefined,
githubToken: string | undefined githubToken: string | undefined,
): Promise<string> { ): Promise<string> {
const artifact = `uv-${arch}-${platform}` const artifact = `uv-${arch}-${platform}`;
let downloadUrl = `https://github.com/${OWNER}/${REPO}/releases/download/${version}/${artifact}` let downloadUrl = `https://github.com/${OWNER}/${REPO}/releases/download/${version}/${artifact}`;
if (platform === 'pc-windows-msvc') { if (platform === "pc-windows-msvc") {
downloadUrl += '.zip' downloadUrl += ".zip";
} else { } else {
downloadUrl += '.tar.gz' downloadUrl += ".tar.gz";
} }
core.info(`Downloading uv from "${downloadUrl}" ...`) core.info(`Downloading uv from "${downloadUrl}" ...`);
const downloadPath = await tc.downloadTool( const downloadPath = await tc.downloadTool(
downloadUrl, downloadUrl,
undefined, undefined,
githubToken githubToken,
) );
await validateChecksum(checkSum, downloadPath, arch, platform, version) await validateChecksum(checkSum, downloadPath, arch, platform, version);
let uvDir: string let uvDir: string;
if (platform === 'pc-windows-msvc') { if (platform === "pc-windows-msvc") {
uvDir = await tc.extractZip(downloadPath) uvDir = await tc.extractZip(downloadPath);
// On windows extracting the zip does not create an intermediate directory // On windows extracting the zip does not create an intermediate directory
} else { } else {
const extractedDir = await tc.extractTar(downloadPath) const extractedDir = await tc.extractTar(downloadPath);
uvDir = path.join(extractedDir, artifact) uvDir = path.join(extractedDir, artifact);
} }
return await tc.cacheDir(uvDir, TOOL_CACHE_NAME, version, arch) return await tc.cacheDir(uvDir, TOOL_CACHE_NAME, version, arch);
} }

View File

@ -1,49 +1,52 @@
import * as cache from '@actions/cache' import * as cache from "@actions/cache";
import * as core from '@actions/core' import * as core from "@actions/core";
import * as exec from '@actions/exec' import * as exec from "@actions/exec";
import {STATE_CACHE_MATCHED_KEY, STATE_CACHE_KEY} from './cache/restore-cache' import {
import {cacheLocalPath, enableCache} from './utils/inputs' STATE_CACHE_MATCHED_KEY,
STATE_CACHE_KEY,
} from "./cache/restore-cache";
import { cacheLocalPath, enableCache } from "./utils/inputs";
export async function run(): Promise<void> { export async function run(): Promise<void> {
try { try {
if (enableCache) { if (enableCache) {
await saveCache() await saveCache();
} }
} catch (error) { } catch (error) {
const err = error as Error const err = error as Error;
core.setFailed(err.message) core.setFailed(err.message);
} }
process.exit(0) process.exit(0);
} }
async function saveCache(): Promise<void> { async function saveCache(): Promise<void> {
const cacheKey = core.getState(STATE_CACHE_KEY) const cacheKey = core.getState(STATE_CACHE_KEY);
const matchedKey = core.getState(STATE_CACHE_MATCHED_KEY) const matchedKey = core.getState(STATE_CACHE_MATCHED_KEY);
if (!cacheKey) { if (!cacheKey) {
core.warning('Error retrieving cache key from state.') core.warning("Error retrieving cache key from state.");
return return;
} else if (matchedKey === cacheKey) { } else if (matchedKey === cacheKey) {
core.info(`Cache hit occurred on key ${cacheKey}, not saving cache.`) core.info(`Cache hit occurred on key ${cacheKey}, not saving cache.`);
return return;
} }
await pruneCache() await pruneCache();
core.info(`Saving cache path: ${cacheLocalPath}`) core.info(`Saving cache path: ${cacheLocalPath}`);
await cache.saveCache([cacheLocalPath], cacheKey) await cache.saveCache([cacheLocalPath], cacheKey);
core.info(`cache saved with the key: ${cacheKey}`) core.info(`cache saved with the key: ${cacheKey}`);
} }
async function pruneCache(): Promise<void> { async function pruneCache(): Promise<void> {
const options: exec.ExecOptions = { const options: exec.ExecOptions = {
silent: !core.isDebug() silent: !core.isDebug(),
} };
const execArgs = ['cache', 'prune', '--ci'] const execArgs = ["cache", "prune", "--ci"];
core.info('Pruning cache...') core.info("Pruning cache...");
await exec.exec('uv', execArgs, options) await exec.exec("uv", execArgs, options);
} }
run() run();

View File

@ -1,51 +1,59 @@
import * as core from '@actions/core' import * as core from "@actions/core";
import * as path from 'path' import * as path from "path";
import {downloadVersion, tryGetFromToolCache} from './download/download-version' import {
import {restoreCache} from './cache/restore-cache' downloadVersion,
tryGetFromToolCache,
} from "./download/download-version";
import { restoreCache } from "./cache/restore-cache";
import {downloadLatest} from './download/download-latest' import { downloadLatest } from "./download/download-latest";
import {Architecture, getArch, getPlatform, Platform} from './utils/platforms' import {
Architecture,
getArch,
getPlatform,
Platform,
} from "./utils/platforms";
import { import {
cacheLocalPath, cacheLocalPath,
checkSum, checkSum,
enableCache, enableCache,
githubToken, githubToken,
version version,
} from './utils/inputs' } from "./utils/inputs";
async function run(): Promise<void> { async function run(): Promise<void> {
const platform = getPlatform() const platform = getPlatform();
const arch = getArch() const arch = getArch();
try { try {
if (platform === undefined) { if (platform === undefined) {
throw new Error(`Unsupported platform: ${process.platform}`) throw new Error(`Unsupported platform: ${process.platform}`);
} }
if (arch === undefined) { if (arch === undefined) {
throw new Error(`Unsupported architecture: ${process.arch}`) throw new Error(`Unsupported architecture: ${process.arch}`);
} }
const setupResult = await setupUv( const setupResult = await setupUv(
platform, platform,
arch, arch,
version, version,
checkSum, checkSum,
githubToken githubToken,
) );
addUvToPath(setupResult.uvDir) addUvToPath(setupResult.uvDir);
core.setOutput('uv-version', version) core.setOutput("uv-version", version);
core.info(`Successfully installed uv version ${version}`) core.info(`Successfully installed uv version ${version}`);
addMatchers() addMatchers();
setCacheDir(cacheLocalPath) setCacheDir(cacheLocalPath);
if (enableCache) { if (enableCache) {
await restoreCache(setupResult.version) await restoreCache(setupResult.version);
} }
} catch (err) { } catch (err) {
core.setFailed((err as Error).message) core.setFailed((err as Error).message);
} }
process.exit(0) process.exit(0);
} }
async function setupUv( async function setupUv(
@ -53,47 +61,47 @@ async function setupUv(
arch: Architecture, arch: Architecture,
versionInput: string, versionInput: string,
checkSum: string | undefined, checkSum: string | undefined,
githubToken: string | undefined githubToken: string | undefined,
): Promise<{uvDir: string; version: string}> { ): Promise<{ uvDir: string; version: string }> {
let installedPath: string | undefined let installedPath: string | undefined;
let cachedToolDir: string let cachedToolDir: string;
let version: string let version: string;
if (versionInput === 'latest') { if (versionInput === "latest") {
const result = await downloadLatest(platform, arch, checkSum, githubToken) const result = await downloadLatest(platform, arch, checkSum, githubToken);
version = result.version version = result.version;
cachedToolDir = result.cachedToolDir cachedToolDir = result.cachedToolDir;
} else { } else {
version = versionInput version = versionInput;
installedPath = tryGetFromToolCache(arch, versionInput) installedPath = tryGetFromToolCache(arch, versionInput);
if (installedPath) { if (installedPath) {
core.info(`Found uv in tool-cache for ${versionInput}`) core.info(`Found uv in tool-cache for ${versionInput}`);
return {uvDir: installedPath, version} return { uvDir: installedPath, version };
} }
cachedToolDir = await downloadVersion( cachedToolDir = await downloadVersion(
platform, platform,
arch, arch,
versionInput, versionInput,
checkSum, checkSum,
githubToken githubToken,
) );
} }
return {uvDir: cachedToolDir, version} return { uvDir: cachedToolDir, version };
} }
function addUvToPath(cachedPath: string): void { function addUvToPath(cachedPath: string): void {
core.addPath(cachedPath) core.addPath(cachedPath);
core.info(`Added ${cachedPath} to the path`) core.info(`Added ${cachedPath} to the path`);
} }
function setCacheDir(cacheLocalPath: string): void { function setCacheDir(cacheLocalPath: string): void {
core.exportVariable('UV_CACHE_DIR', cacheLocalPath) core.exportVariable("UV_CACHE_DIR", cacheLocalPath);
core.info(`Set UV_CACHE_DIR to ${cacheLocalPath}`) core.info(`Set UV_CACHE_DIR to ${cacheLocalPath}`);
} }
function addMatchers(): void { function addMatchers(): void {
const matchersPath = path.join(__dirname, `..${path.sep}..`, '.github') const matchersPath = path.join(__dirname, `..${path.sep}..`, ".github");
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`) core.info(`##[add-matcher]${path.join(matchersPath, "python.json")}`);
} }
run() run();

View File

@ -1,65 +1,65 @@
import * as github from '@actions/github' import * as github from "@actions/github";
import * as core from '@actions/core' import * as core from "@actions/core";
import {OWNER, REPO} from './utils/utils' import { OWNER, REPO } from "./utils/utils";
import {createReadStream, promises as fs} from 'fs' import { createReadStream, promises as fs } from "fs";
import * as readline from 'readline' import * as readline from "readline";
import * as semver from 'semver' import * as semver from "semver";
import {updateChecksums} from './download/checksum/update-known-checksums' import { updateChecksums } from "./download/checksum/update-known-checksums";
async function run(): Promise<void> { async function run(): Promise<void> {
const checksumFilePath = process.argv.slice(2)[0] const checksumFilePath = process.argv.slice(2)[0];
const defaultVersionFilePath = process.argv.slice(2)[1] const defaultVersionFilePath = process.argv.slice(2)[1];
const github_token = process.argv.slice(2)[2] const github_token = process.argv.slice(2)[2];
const octokit = github.getOctokit(github_token) const octokit = github.getOctokit(github_token);
const response = await octokit.paginate(octokit.rest.repos.listReleases, { const response = await octokit.paginate(octokit.rest.repos.listReleases, {
owner: OWNER, owner: OWNER,
repo: REPO repo: REPO,
}) });
const downloadUrls: string[] = response.flatMap(release => const downloadUrls: string[] = response.flatMap((release) =>
release.assets release.assets
.filter(asset => asset.name.endsWith('.sha256')) .filter((asset) => asset.name.endsWith(".sha256"))
.map(asset => asset.browser_download_url) .map((asset) => asset.browser_download_url),
) );
await updateChecksums(checksumFilePath, downloadUrls) await updateChecksums(checksumFilePath, downloadUrls);
const latestVersion = response const latestVersion = response
.map(release => release.tag_name) .map((release) => release.tag_name)
.sort(semver.rcompare)[0] .sort(semver.rcompare)[0];
core.setOutput('latest-version', latestVersion) core.setOutput("latest-version", latestVersion);
await updateDefaultVersion(defaultVersionFilePath, latestVersion) await updateDefaultVersion(defaultVersionFilePath, latestVersion);
} }
async function updateDefaultVersion( async function updateDefaultVersion(
filePath: string, filePath: string,
latestVersion: string latestVersion: string,
): Promise<void> { ): Promise<void> {
const fileStream = createReadStream(filePath) const fileStream = createReadStream(filePath);
const rl = readline.createInterface({ const rl = readline.createInterface({
input: fileStream input: fileStream,
}) });
let foundDescription = false let foundDescription = false;
const lines = [] const lines = [];
for await (let line of rl) { for await (let line of rl) {
if ( if (
!foundDescription && !foundDescription &&
line.includes("description: 'The version of uv to install'") line.includes("description: 'The version of uv to install'")
) { ) {
foundDescription = true foundDescription = true;
} else if (foundDescription && line.includes('default: ')) { } else if (foundDescription && line.includes("default: ")) {
line = line.replace(/'[^']*'/, `'${latestVersion}'`) line = line.replace(/'[^']*'/, `'${latestVersion}'`);
foundDescription = false foundDescription = false;
} }
lines.push(line) lines.push(line);
} }
await fs.writeFile(filePath, lines.join('\n')) await fs.writeFile(filePath, lines.join("\n"));
} }
run() run();

View File

@ -1,9 +1,9 @@
import * as core from '@actions/core' import * as core from "@actions/core";
export const version = core.getInput('version') export const version = core.getInput("version");
export const checkSum = core.getInput('checksum') export const checkSum = core.getInput("checksum");
export const enableCache = core.getInput('enable-cache') === 'true' export const enableCache = core.getInput("enable-cache") === "true";
export const cacheSuffix = core.getInput('cache-suffix') || '' export const cacheSuffix = core.getInput("cache-suffix") || "";
export const cacheLocalPath = core.getInput('cache-local-path') export const cacheLocalPath = core.getInput("cache-local-path");
export const githubToken = core.getInput('github-token') export const githubToken = core.getInput("github-token");
export const cacheDependencyGlob = core.getInput('cache-dependency-glob') export const cacheDependencyGlob = core.getInput("cache-dependency-glob");

View File

@ -1,33 +1,33 @@
export type Platform = export type Platform =
| 'unknown-linux-gnu' | "unknown-linux-gnu"
| 'unknown-linux-musl' | "unknown-linux-musl"
| 'unknown-linux-musleabihf' | "unknown-linux-musleabihf"
| 'apple-darwin' | "apple-darwin"
| 'pc-windows-msvc' | "pc-windows-msvc";
export type Architecture = 'i686' | 'x86_64' | 'aarch64' export type Architecture = "i686" | "x86_64" | "aarch64";
export function getArch(): Architecture | undefined { export function getArch(): Architecture | undefined {
const arch = process.arch const arch = process.arch;
const archMapping: {[key: string]: Architecture} = { const archMapping: { [key: string]: Architecture } = {
ia32: 'i686', ia32: "i686",
x64: 'x86_64', x64: "x86_64",
arm64: 'aarch64' arm64: "aarch64",
} };
if (arch in archMapping) { if (arch in archMapping) {
return archMapping[arch] return archMapping[arch];
} }
} }
export function getPlatform(): Platform | undefined { export function getPlatform(): Platform | undefined {
const platform = process.platform const platform = process.platform;
const platformMapping: {[key: string]: Platform} = { const platformMapping: { [key: string]: Platform } = {
linux: 'unknown-linux-gnu', linux: "unknown-linux-gnu",
darwin: 'apple-darwin', darwin: "apple-darwin",
win32: 'pc-windows-msvc' win32: "pc-windows-msvc",
} };
if (platform in platformMapping) { if (platform in platformMapping) {
return platformMapping[platform] return platformMapping[platform];
} }
} }

View File

@ -1,3 +1,3 @@
export const REPO = 'uv' export const REPO = "uv";
export const OWNER = 'astral-sh' export const OWNER = "astral-sh";
export const TOOL_CACHE_NAME = 'uv' export const TOOL_CACHE_NAME = "uv";