setup-uv/package.json

46 lines
1.6 KiB
JSON
Raw Normal View History

2024-08-24 05:58:26 +08:00
{
"name": "setup-uv",
"version": "1.0.0",
"private": true,
"description": "Set up your GitHub Actions workflow with a specific version of uv",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "biome format --fix",
"format-check": "biome format",
"lint": "biome lint --fix",
"package": "ncc build -o dist/setup src/setup-uv.ts && ncc build -o dist/save-cache src/save-cache.ts && ncc build -o dist/update-known-checksums src/update-known-checksums.ts",
2024-08-24 05:58:26 +08:00
"test": "jest",
"act": "act pull_request -W .github/workflows/test.yml --container-architecture linux/amd64 -s GITHUB_TOKEN=\"$(gh auth token)\"",
"update-known-checksums": "node dist/update-known-checksums/index.js src/download/checksum/known-checksums.ts \"$(gh auth token)\"",
2024-08-24 05:58:26 +08:00
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astral-sh/setup-uv.git"
2024-08-24 05:58:26 +08:00
},
"keywords": ["actions", "python", "setup", "uv"],
2024-08-24 05:58:26 +08:00
"author": "@eifinger",
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0",
2024-08-24 05:58:26 +08:00
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
2024-08-24 15:28:20 +08:00
"@octokit/rest": "^21.0.2"
2024-08-24 05:58:26 +08:00
},
"devDependencies": {
Bump @biomejs/biome from 1.9.2 to 1.9.3 (#110) Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 1.9.2 to 1.9.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/releases"><code>@​biomejs/biome</code>'s releases</a>.</em></p> <blockquote> <h2>CLI v1.9.3</h2> <h3>CLI</h3> <h4>New features</h4> <ul> <li> <p>GritQL queries that match functions or methods will now match async functions or methods as well.</p> <p>If this is not what you want, you can capture the <code>async</code> keyword (or its absence) in a metavariable and assert its emptiness:</p> <pre lang="grit"><code>$async function foo() {} where $async &lt;: . </code></pre> <p>Contributed by <a href="https://github.com/arendjr"><code>@​arendjr</code></a></p> </li> </ul> <h4>Bug fixes</h4> <ul> <li> <p>Fix <a href="https://redirect.github.com/biomejs/biome/issues/4077">#4077</a>: Grit queries no longer need to match the statement's trailing semicolon. Contributed by <a href="https://github.com/arendjr"><code>@​arendjr</code></a></p> </li> <li> <p>Fix <a href="https://redirect.github.com/biomejs/biome/issues/4102">#4102</a>. Now the CLI command <code>lint</code> doesn't exit with an error code when using <code>--write</code>/<code>--fix</code>. Contributed by <a href="https://github.com/ematipico"><code>@​ematipico</code></a></p> </li> </ul> <h3>Configuration</h3> <h4>Bug fixes</h4> <ul> <li>Fix <a href="https://redirect.github.com/biomejs/biome/issues/4125">#4125</a>, where <code>noLabelWithoutControl</code> options where incorrectly marked as mandatory. Contributed by <a href="https://github.com/ematipico"><code>@​ematipico</code></a></li> </ul> <h3>Editors</h3> <ul> <li>Fix a case where CSS files weren't correctly linted using the default configuration. Contributed by <a href="https://github.com/ematipico"><code>@​ematipico</code></a></li> </ul> <h3>Formatter</h3> <h4>Bug fixes</h4> <ul> <li> <p>Fix <a href="https://redirect.github.com/biomejs/biome/issues/3924">#3924</a> where GraphQL formatter panics in block comments with empty line. Contributed by <a href="https://github.com/vohoanglong0107"><code>@​vohoanglong0107</code></a></p> </li> <li> <p>Fix a case where raw values inside <code>url()</code> functions weren't properly trimmed.</p> <pre lang="diff"><code>.value { - background: url( - whitespace-around-string - ); + background: url(whitespace-around-string); } </code></pre> <p>Contributed by <a href="https://github.com/ematipico"><code>@​ematipico</code></a></p> </li> <li> <p>Fixed <a href="https://redirect.github.com/biomejs/biome/issues/4076">#4076</a>, where a media query wasn't correctly formatted:</p> <pre lang="diff"><code>.class { </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/blob/main/CHANGELOG.md"><code>@​biomejs/biome</code>'s changelog</a>.</em></p> <blockquote> <h2>v1.9.3 (2024-10-01)</h2> <h3>CLI</h3> <h4>New features</h4> <ul> <li> <p>GritQL queries that match functions or methods will now match async functions or methods as well.</p> <p>If this is not what you want, you can capture the <code>async</code> keyword (or its absence) in a metavariable and assert its emptiness:</p> <pre lang="grit"><code>$async function foo() {} where $async &lt;: . </code></pre> <p>Contributed by <a href="https://github.com/arendjr"><code>@​arendjr</code></a></p> </li> </ul> <h4>Bug fixes</h4> <ul> <li> <p>Fix <a href="https://redirect.github.com/biomejs/biome/issues/4077">#4077</a>: Grit queries no longer need to match the statement's trailing semicolon. Contributed by <a href="https://github.com/arendjr"><code>@​arendjr</code></a></p> </li> <li> <p>Fix <a href="https://redirect.github.com/biomejs/biome/issues/4102">#4102</a>. Now the CLI command <code>lint</code> doesn't exit with an error code when using <code>--write</code>/<code>--fix</code>. Contributed by <a href="https://github.com/ematipico"><code>@​ematipico</code></a></p> </li> </ul> <h3>Configuration</h3> <h4>Bug fixes</h4> <ul> <li>Fix <a href="https://redirect.github.com/biomejs/biome/issues/4125">#4125</a>, where <code>noLabelWithoutControl</code> options where incorrectly marked as mandatory. Contributed by <a href="https://github.com/ematipico"><code>@​ematipico</code></a></li> </ul> <h3>Editors</h3> <ul> <li>Fix a case where CSS files weren't correctly linted using the default configuration. Contributed by <a href="https://github.com/ematipico"><code>@​ematipico</code></a></li> </ul> <h3>Formatter</h3> <h4>Bug fixes</h4> <ul> <li> <p>Fix <a href="https://redirect.github.com/biomejs/biome/issues/3924">#3924</a> where GraphQL formatter panics in block comments with empty line. Contributed by <a href="https://github.com/vohoanglong0107"><code>@​vohoanglong0107</code></a></p> </li> <li> <p>Fix a case where raw values inside <code>url()</code> functions weren't properly trimmed.</p> <pre lang="diff"><code>.value { - background: url( - whitespace-around-string - ); + background: url(whitespace-around-string); } </code></pre> <p>Contributed by <a href="https://github.com/ematipico"><code>@​ematipico</code></a></p> </li> <li> <p>Fixed <a href="https://redirect.github.com/biomejs/biome/issues/4076">#4076</a>, where a media query wasn't correctly formatted:</p> <pre lang="diff"><code></code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/biomejs/biome/commit/3d498ed6399dc642d045f9bb9e9782a88c6bd4c9"><code>3d498ed</code></a> release: v1.9.3 (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/4140">#4140</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/7e29f06930e977d5f2165260ca87c21f414cf62e"><code>7e29f06</code></a> fix(lint): options for <code>noLabelWithoutControl</code> are optional (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/4138">#4138</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/10a1371dca2581f4a4d6ef3fdc3117ced2b91a58"><code>10a1371</code></a> feat(useExhaustiveDependencies): add option to disable errors for unecessary ...</li> <li><a href="https://github.com/biomejs/biome/commit/295efb90b91bf66a03dec93a91a16623a5d93360"><code>295efb9</code></a> feat(biome_css_analyze): implement <code>noDescendingSpecificity</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/4097">#4097</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/f3cfa8a92d7e6ca1a5cc3036c60ca0194d250e3f"><code>f3cfa8a</code></a> fix(schema): make optional the <code>options</code> JSON schema field (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/4080">#4080</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/cc4c867575f3b290b6354635a0059b797c682a20"><code>cc4c867</code></a> feat(linter): implement noTemplateCurlyInString (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/4069">#4069</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/d03c6cd029dd273ba6a3a270ab82e7f02b24b8d5"><code>d03c6cd</code></a> feat(linter): implement no-nested-ternary (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/4067">#4067</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/2b6b3c8aa97b6a1777fcaf41f5ac6f587dcec547"><code>2b6b3c8</code></a> chore(deps): update <a href="https://github.com/biomejs"><code>@​biomejs</code></a> packages (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/4047">#4047</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/b76cb416dac0de8712c0236aa2832a824df5b1d5"><code>b76cb41</code></a> feat(linter): implement useExplicitFunctionReturnType (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/3990">#3990</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/a766aebd6cba44605b1108db373253bc00d0f9b9"><code>a766aeb</code></a> chore(readme): use polar shield (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/4000">#4000</a>)</li> <li>Additional commits viewable in <a href="https://github.com/biomejs/biome/commits/cli/v1.9.3/packages/@biomejs/biome">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@biomejs/biome&package-manager=npm_and_yarn&previous-version=1.9.2&new-version=1.9.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-08 13:22:05 +08:00
"@biomejs/biome": "1.9.3",
Bump @types/node from 22.7.3 to 22.7.4 (#108) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.7.3 to 22.7.4. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=22.7.3&new-version=22.7.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-02 15:44:49 +08:00
"@types/node": "^22.7.4",
2024-08-24 05:58:26 +08:00
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
2024-08-24 15:28:20 +08:00
"ts-jest": "^29.2.5",
Bump typescript from 5.5.4 to 5.6.2 (#64) Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.5.4 to 5.6.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/TypeScript/releases">typescript's releases</a>.</em></p> <blockquote> <h2>TypeScript 5.6</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for Typescript 5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+">fixed issues query for Typescript 5.6.2 (Stable)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> <h2>TypeScript 5.6 RC</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6-rc/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for TypeScript v5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for TypeScript v5.6.0 (Beta)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> </ul> <h2>TypeScript 5.6 Beta</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6-beta/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/TypeScript/commit/a7e3374f13327483fbe94e32806d65785b0b6cda"><code>a7e3374</code></a> Bump version to 5.6.2 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/20633579fcf88f6b61774349740de4841d2b8b5c"><code>2063357</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/59708">#59708</a> (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/4fe7e41ea1a92ecbd59119666be2d60164785391"><code>4fe7e41</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/59670">#59670</a> (fix(59649): ts Move to a new file d...) into release-5.6 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/1a03e5340ae0b83ce1b1f743763625f89e92ca91"><code>1a03e53</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/59761">#59761</a> (<code>this</code> can be nullish) into release-5.6 (<a href="https://redirect.github.com/microsoft/TypeScript/issues/59762">#59762</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/6212132b835145b1a8fd49982680ac668caf3ddc"><code>6212132</code></a> Update LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/bbb5faf7e749df52adafdcd37c09ac7fff30ddaf"><code>bbb5faf</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/59542">#59542</a> (Fixing delay caused in vscode due t...) into release-5.6 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/e6914a558775bd3ba3dc5567877604a0864b9338"><code>e6914a5</code></a> Bump version to 5.6.1-rc and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/34121c42b638e973f28b438b0513796a37585448"><code>34121c4</code></a> Update LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/2a30c2a8f0408b32c8c7ff88f0bf1c6a32e67704"><code>2a30c2a</code></a> Merge remote-tracking branch 'origin/main' into release-5.6</li> <li><a href="https://github.com/microsoft/TypeScript/commit/936a79bbb58f82b173f6b644974995851b9b479e"><code>936a79b</code></a> Expose TypeChecker. getAwaitedType to public (<a href="https://redirect.github.com/microsoft/TypeScript/issues/59268">#59268</a>)</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/TypeScript/compare/v5.5.4...v5.6.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=5.5.4&new-version=5.6.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-17 03:12:39 +08:00
"typescript": "^5.6.2"
2024-08-24 05:58:26 +08:00
}
}