mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-06-16 11:38:58 +00:00
Compare commits
34 Commits
v7.1.4
...
zsol/jj-uq
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
71191068af | ||
|
|
450788bda3 | ||
|
|
9cfd029643 | ||
|
|
dd9d55bc18 | ||
|
|
8512ad0289 | ||
|
|
cc5581700e | ||
|
|
61cb8a9741 | ||
|
|
11050edb83 | ||
|
|
1d22fafd8b | ||
|
|
f4ed82a8ce | ||
|
|
e0409b43c0 | ||
|
|
702b425af1 | ||
|
|
2630c86ac3 | ||
|
|
45cfcb3be5 | ||
|
|
ce0a8994de | ||
|
|
9c8d030b7f | ||
|
|
681c641aba | ||
|
|
2e85713bb0 | ||
|
|
58b6d7b303 | ||
|
|
e8b52af86e | ||
|
|
ed21f2f24f | ||
|
|
93202d8fbe | ||
|
|
5ce090076d | ||
|
|
4180991cd9 | ||
|
|
0439606c8e | ||
|
|
7dd56c18e9 | ||
|
|
9c12baee96 | ||
|
|
64f7f4e15f | ||
|
|
5ae467fbf9 | ||
|
|
06e4edb239 | ||
|
|
8f1d388b4b | ||
|
|
d500d41ebf | ||
|
|
1e64fb113b | ||
|
|
be7fc19b41 |
4
.github/copilot-instructions.md
vendored
4
.github/copilot-instructions.md
vendored
@@ -59,7 +59,7 @@ src/
|
|||||||
#### 1. Install Dependencies
|
#### 1. Install Dependencies
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install
|
npm ci --ignore-scripts
|
||||||
```
|
```
|
||||||
|
|
||||||
**Timing**: ~20-30 seconds
|
**Timing**: ~20-30 seconds
|
||||||
@@ -236,7 +236,7 @@ This file is the authoritative source for understanding available action paramet
|
|||||||
|
|
||||||
### Build Failures
|
### Build Failures
|
||||||
|
|
||||||
- **"Module not found"**: Run `npm install` to ensure dependencies are installed
|
- **"Module not found"**: Run `npm ci --ignore-scripts` to ensure dependencies are installed
|
||||||
- **TypeScript errors**: Check `tsconfig.json` and ensure all imports are valid
|
- **TypeScript errors**: Check `tsconfig.json` and ensure all imports are valid
|
||||||
- **Test failures**: Check if test fixtures have been modified or if logic changes broke assumptions
|
- **Test failures**: Check if test fixtures have been modified or if logic changes broke assumptions
|
||||||
|
|
||||||
|
|||||||
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
@@ -4,8 +4,12 @@ updates:
|
|||||||
directory: /
|
directory: /
|
||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
|
cooldown:
|
||||||
|
default-days: 7
|
||||||
|
|
||||||
- package-ecosystem: npm
|
- package-ecosystem: npm
|
||||||
directory: /
|
directory: /
|
||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
|
cooldown:
|
||||||
|
default-days: 7
|
||||||
|
|||||||
8
.github/workflows/codeql-analysis.yml
vendored
8
.github/workflows/codeql-analysis.yml
vendored
@@ -41,13 +41,13 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
|
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
source-root: src
|
source-root: src
|
||||||
@@ -59,7 +59,7 @@ jobs:
|
|||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
|
uses: github/codeql-action/autobuild@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
# 📚 https://git.io/JvXDl
|
# 📚 https://git.io/JvXDl
|
||||||
@@ -73,4 +73,4 @@ jobs:
|
|||||||
# make release
|
# make release
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
|
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
|
||||||
|
|||||||
185
.github/workflows/test.yml
vendored
185
.github/workflows/test.yml
vendored
@@ -21,19 +21,19 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
security-events: write # for zizmor
|
security-events: write # for zizmor
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Actionlint
|
- name: Actionlint
|
||||||
uses: eifinger/actionlint-action@03ff1f78c0670b71017616a37170f327df932030 # v1.9.2
|
uses: eifinger/actionlint-action@213860089b7cf97d640aa67567898fabeb132746 # v1.9.3
|
||||||
- name: Run zizmor
|
- name: Run zizmor
|
||||||
uses: zizmorcore/zizmor-action@e673c3917a1aef3c65c972347ed84ccd013ecda4 # v0.2.0
|
uses: zizmorcore/zizmor-action@e639db99335bc9038abc0e066dfcd72e23d26fb4 # v0.3.0
|
||||||
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
|
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
|
||||||
with:
|
with:
|
||||||
node-version-file: .nvmrc
|
node-version-file: .nvmrc
|
||||||
cache: npm
|
cache: npm
|
||||||
- run: |
|
- run: |
|
||||||
npm install
|
npm ci --ignore-scripts
|
||||||
- run: |
|
- run: |
|
||||||
npm run all
|
npm run all
|
||||||
- name: Check all jobs are in all-tests-passed.needs
|
- name: Check all jobs are in all-tests-passed.needs
|
||||||
@@ -51,7 +51,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, macos-14, windows-latest]
|
os: [ubuntu-latest, macos-latest, macos-14, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install latest version
|
- name: Install latest version
|
||||||
@@ -76,7 +76,7 @@ jobs:
|
|||||||
test-uv-no-modify-path:
|
test-uv-no-modify-path:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install with UV_NO_MODIFY_PATH set
|
- name: Install with UV_NO_MODIFY_PATH set
|
||||||
@@ -125,7 +125,7 @@ jobs:
|
|||||||
expected-version: "0.1.0"
|
expected-version: "0.1.0"
|
||||||
resolution-strategy: "lowest"
|
resolution-strategy: "lowest"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install version ${{ matrix.input.version-input }} with strategy ${{ matrix.input.resolution-strategy || 'highest' }}
|
- name: Install version ${{ matrix.input.version-input }} with strategy ${{ matrix.input.resolution-strategy || 'highest' }}
|
||||||
@@ -154,7 +154,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
version-input: ["latest", ">=0.8"]
|
version-input: ["latest", ">=0.8"]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install version ${{ matrix.version-input }}
|
- name: Install version ${{ matrix.version-input }}
|
||||||
@@ -182,7 +182,7 @@ jobs:
|
|||||||
- working-directory: "__tests__/fixtures/uv-toml-project"
|
- working-directory: "__tests__/fixtures/uv-toml-project"
|
||||||
expected-version: "0.5.15"
|
expected-version: "0.5.15"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install version from ${{ matrix.input.working-directory }}
|
- name: Install version from ${{ matrix.input.working-directory }}
|
||||||
@@ -208,7 +208,7 @@ jobs:
|
|||||||
- version-file: "__tests__/fixtures/.tool-versions"
|
- version-file: "__tests__/fixtures/.tool-versions"
|
||||||
expected-version: "0.5.15"
|
expected-version: "0.5.15"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install version from ${{ matrix.input.version-file }}
|
- name: Install version from ${{ matrix.input.version-file }}
|
||||||
@@ -225,7 +225,7 @@ jobs:
|
|||||||
test-malformed-pyproject-file-fallback:
|
test-malformed-pyproject-file-fallback:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install using malformed pyproject.toml
|
- name: Install using malformed pyproject.toml
|
||||||
@@ -245,7 +245,7 @@ jobs:
|
|||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
checksum: "a70cbfbf3bb5c08b2f84963b4f12c94e08fbb2468ba418a3bfe1066fbe9e7218"
|
checksum: "a70cbfbf3bb5c08b2f84963b4f12c94e08fbb2468ba418a3bfe1066fbe9e7218"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Checksum matches expected
|
- name: Checksum matches expected
|
||||||
@@ -259,7 +259,7 @@ jobs:
|
|||||||
test-with-explicit-token:
|
test-with-explicit-token:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install default version
|
- name: Install default version
|
||||||
@@ -272,7 +272,7 @@ jobs:
|
|||||||
test-uvx:
|
test-uvx:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install default version
|
- name: Install default version
|
||||||
@@ -285,7 +285,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, macos-14, windows-latest]
|
os: [ubuntu-latest, macos-latest, macos-14, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install default version
|
- name: Install default version
|
||||||
@@ -296,7 +296,7 @@ jobs:
|
|||||||
test-tilde-expansion-tool-dirs:
|
test-tilde-expansion-tool-dirs:
|
||||||
runs-on: selfhosted-ubuntu-arm64
|
runs-on: selfhosted-ubuntu-arm64
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup with cache
|
- name: Setup with cache
|
||||||
@@ -321,10 +321,11 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install latest version
|
- name: Install latest version
|
||||||
|
id: setup-uv
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
python-version: 3.13.1t
|
python-version: 3.13.1t
|
||||||
@@ -335,6 +336,14 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
- name: Verify output python-version is correct
|
||||||
|
run: |
|
||||||
|
if [ "$PYTHON_VERSION" != "3.13.1t" ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
PYTHON_VERSION: ${{ steps.setup-uv.outputs.python-version }}
|
||||||
- run: uv sync
|
- run: uv sync
|
||||||
working-directory: __tests__/fixtures/uv-project
|
working-directory: __tests__/fixtures/uv-project
|
||||||
|
|
||||||
@@ -344,7 +353,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install latest version
|
- name: Install latest version
|
||||||
@@ -381,14 +390,64 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: alpine
|
container: alpine
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install latest version
|
- name: Install latest version
|
||||||
|
id: setup-uv
|
||||||
uses: ./
|
uses: ./
|
||||||
|
with:
|
||||||
|
enable-cache: true
|
||||||
|
- name: Verify cache key contains alpine
|
||||||
|
run: |
|
||||||
|
echo "Cache key: $CACHE_KEY"
|
||||||
|
if echo "$CACHE_KEY" | grep -qv "alpine"; then
|
||||||
|
echo "Cache key does not contain 'alpine'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
shell: sh
|
||||||
|
env:
|
||||||
|
CACHE_KEY: ${{ steps.setup-uv.outputs.cache-key }}
|
||||||
- run: uv sync
|
- run: uv sync
|
||||||
working-directory: __tests__/fixtures/uv-project
|
working-directory: __tests__/fixtures/uv-project
|
||||||
|
|
||||||
|
test-cache-key-os-version:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
expected-os: "ubuntu-22.04"
|
||||||
|
- os: ubuntu-24.04
|
||||||
|
expected-os: "ubuntu-24.04"
|
||||||
|
- os: macos-14
|
||||||
|
expected-os: "macos-14"
|
||||||
|
- os: macos-15
|
||||||
|
expected-os: "macos-15"
|
||||||
|
- os: windows-2022
|
||||||
|
expected-os: "windows-2022"
|
||||||
|
- os: windows-2025
|
||||||
|
expected-os: "windows-2025"
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
- name: Setup uv
|
||||||
|
id: setup-uv
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
enable-cache: true
|
||||||
|
- name: Verify cache key contains OS version
|
||||||
|
run: |
|
||||||
|
echo "Cache key: $CACHE_KEY"
|
||||||
|
if [[ "$CACHE_KEY" != *"${{ matrix.expected-os }}"* ]]; then
|
||||||
|
echo "Cache key does not contain expected OS version: ${{ matrix.expected-os }}"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
CACHE_KEY: ${{ steps.setup-uv.outputs.cache-key }}
|
||||||
|
|
||||||
test-setup-cache:
|
test-setup-cache:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
@@ -396,7 +455,7 @@ jobs:
|
|||||||
enable-cache: ["true", "false", "auto"]
|
enable-cache: ["true", "false", "auto"]
|
||||||
os: ["ubuntu-latest", "selfhosted-ubuntu-arm64", "windows-latest"]
|
os: ["ubuntu-latest", "selfhosted-ubuntu-arm64", "windows-latest"]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup with cache
|
- name: Setup with cache
|
||||||
@@ -415,7 +474,7 @@ jobs:
|
|||||||
os: ["ubuntu-latest", "selfhosted-ubuntu-arm64", "windows-latest"]
|
os: ["ubuntu-latest", "selfhosted-ubuntu-arm64", "windows-latest"]
|
||||||
needs: test-setup-cache
|
needs: test-setup-cache
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Restore with cache
|
- name: Restore with cache
|
||||||
@@ -449,7 +508,7 @@ jobs:
|
|||||||
test-setup-cache-requirements-txt:
|
test-setup-cache-requirements-txt:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup with cache
|
- name: Setup with cache
|
||||||
@@ -465,7 +524,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: test-setup-cache-requirements-txt
|
needs: test-setup-cache-requirements-txt
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Restore with cache
|
- name: Restore with cache
|
||||||
@@ -489,7 +548,7 @@ jobs:
|
|||||||
test-setup-cache-dependency-glob:
|
test-setup-cache-dependency-glob:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup with cache
|
- name: Setup with cache
|
||||||
@@ -506,7 +565,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: test-setup-cache-dependency-glob
|
needs: test-setup-cache-dependency-glob
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Change pyproject.toml
|
- name: Change pyproject.toml
|
||||||
@@ -534,7 +593,7 @@ jobs:
|
|||||||
test-setup-cache-save-cache-false:
|
test-setup-cache-save-cache-false:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup with cache
|
- name: Setup with cache
|
||||||
@@ -550,7 +609,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: test-setup-cache-save-cache-false
|
needs: test-setup-cache-save-cache-false
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Restore with cache
|
- name: Restore with cache
|
||||||
@@ -570,7 +629,7 @@ jobs:
|
|||||||
test-setup-cache-restore-cache-false:
|
test-setup-cache-restore-cache-false:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup with cache
|
- name: Setup with cache
|
||||||
@@ -585,7 +644,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: test-setup-cache-restore-cache-false
|
needs: test-setup-cache-restore-cache-false
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Restore with cache
|
- name: Restore with cache
|
||||||
@@ -615,7 +674,7 @@ jobs:
|
|||||||
expected-cache-dir: "/home/ubuntu/.cache/uv"
|
expected-cache-dir: "/home/ubuntu/.cache/uv"
|
||||||
runs-on: ${{ matrix.inputs.os }}
|
runs-on: ${{ matrix.inputs.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup with cache
|
- name: Setup with cache
|
||||||
@@ -633,7 +692,7 @@ jobs:
|
|||||||
test-cache-local-cache-disabled:
|
test-cache-local-cache-disabled:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup without cache
|
- name: Setup without cache
|
||||||
@@ -649,10 +708,30 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
test-cache-local-cache-disabled-but-explicit-path:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
- name: Setup without cache
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
enable-cache: false
|
||||||
|
cache-local-path: /tmp/uv-cache-disabled
|
||||||
|
|
||||||
|
- name: Check UV_CACHE_DIR is set
|
||||||
|
run: |
|
||||||
|
if [ "$UV_CACHE_DIR" != "/tmp/uv-cache-disabled" ]; then
|
||||||
|
echo "UV_CACHE_DIR should be set when cache is disabled but explicit path is provided"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
shell: bash
|
||||||
|
|
||||||
test-setup-cache-local:
|
test-setup-cache-local:
|
||||||
runs-on: selfhosted-ubuntu-arm64
|
runs-on: selfhosted-ubuntu-arm64
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup with cache
|
- name: Setup with cache
|
||||||
@@ -667,7 +746,7 @@ jobs:
|
|||||||
runs-on: selfhosted-ubuntu-arm64
|
runs-on: selfhosted-ubuntu-arm64
|
||||||
needs: test-setup-cache-local
|
needs: test-setup-cache-local
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Restore with cache
|
- name: Restore with cache
|
||||||
@@ -690,7 +769,7 @@ jobs:
|
|||||||
test-tilde-expansion-cache-local-path:
|
test-tilde-expansion-cache-local-path:
|
||||||
runs-on: selfhosted-ubuntu-arm64
|
runs-on: selfhosted-ubuntu-arm64
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Create cache directory
|
- name: Create cache directory
|
||||||
@@ -706,7 +785,7 @@ jobs:
|
|||||||
test-tilde-expansion-cache-dependency-glob:
|
test-tilde-expansion-cache-dependency-glob:
|
||||||
runs-on: selfhosted-ubuntu-arm64
|
runs-on: selfhosted-ubuntu-arm64
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Create cache directory
|
- name: Create cache directory
|
||||||
@@ -741,7 +820,7 @@ jobs:
|
|||||||
test-no-python-version:
|
test-no-python-version:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Fake pyproject.toml at root
|
- name: Fake pyproject.toml at root
|
||||||
@@ -756,7 +835,7 @@ jobs:
|
|||||||
test-custom-manifest-file:
|
test-custom-manifest-file:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install from custom manifest file
|
- name: Install from custom manifest file
|
||||||
@@ -775,7 +854,7 @@ jobs:
|
|||||||
test-absolute-path:
|
test-absolute-path:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Create requirements.txt
|
- name: Create requirements.txt
|
||||||
@@ -795,7 +874,7 @@ jobs:
|
|||||||
test-relative-path:
|
test-relative-path:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: mkdir
|
- name: mkdir
|
||||||
@@ -819,7 +898,7 @@ jobs:
|
|||||||
test-cache-prune-force:
|
test-cache-prune-force:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Setup uv
|
- name: Setup uv
|
||||||
@@ -836,7 +915,7 @@ jobs:
|
|||||||
test-cache-dir-from-file:
|
test-cache-dir-from-file:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Verify uv cache dir is not populated
|
- name: Verify uv cache dir is not populated
|
||||||
@@ -861,7 +940,7 @@ jobs:
|
|||||||
test-cache-python-installs:
|
test-cache-python-installs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Verify Python install dir is not populated
|
- name: Verify Python install dir is not populated
|
||||||
@@ -888,7 +967,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: test-cache-python-installs
|
needs: test-cache-python-installs
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Verify Python install dir does not exist
|
- name: Verify Python install dir does not exist
|
||||||
@@ -916,7 +995,7 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
env:
|
env:
|
||||||
CACHE_HIT: ${{ steps.restore.outputs.cache-hit }}
|
CACHE_HIT: ${{ steps.restore.outputs.python-cache-hit }}
|
||||||
- run: uv sync --managed-python
|
- run: uv sync --managed-python
|
||||||
working-directory: __tests__/fixtures/uv-project
|
working-directory: __tests__/fixtures/uv-project
|
||||||
|
|
||||||
@@ -932,7 +1011,7 @@ jobs:
|
|||||||
expected-python-dir: "/home/ubuntu/.local/share/uv/python"
|
expected-python-dir: "/home/ubuntu/.local/share/uv/python"
|
||||||
runs-on: ${{ matrix.inputs.os }}
|
runs-on: ${{ matrix.inputs.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install latest version
|
- name: Install latest version
|
||||||
@@ -951,7 +1030,7 @@ jobs:
|
|||||||
test-act:
|
test-act:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Install act
|
- name: Install act
|
||||||
@@ -963,6 +1042,15 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
|
||||||
|
validate-typings:
|
||||||
|
runs-on: "ubuntu-latest"
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
- name: Validate typings
|
||||||
|
uses: typesafegithub/github-actions-typing@184d97003b1300f6a10e286eb98c191e416ff02b # v2.2.1
|
||||||
|
|
||||||
all-tests-passed:
|
all-tests-passed:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs:
|
needs:
|
||||||
@@ -982,8 +1070,10 @@ jobs:
|
|||||||
- test-python-version
|
- test-python-version
|
||||||
- test-activate-environment
|
- test-activate-environment
|
||||||
- test-musl
|
- test-musl
|
||||||
|
- test-cache-key-os-version
|
||||||
- test-cache-local
|
- test-cache-local
|
||||||
- test-cache-local-cache-disabled
|
- test-cache-local-cache-disabled
|
||||||
|
- test-cache-local-cache-disabled-but-explicit-path
|
||||||
- test-setup-cache
|
- test-setup-cache
|
||||||
- test-restore-cache
|
- test-restore-cache
|
||||||
- test-setup-cache-requirements-txt
|
- test-setup-cache-requirements-txt
|
||||||
@@ -1009,6 +1099,7 @@ jobs:
|
|||||||
- test-restore-python-installs
|
- test-restore-python-installs
|
||||||
- test-python-install-dir
|
- test-python-install-dir
|
||||||
- test-act
|
- test-act
|
||||||
|
- validate-typings
|
||||||
if: always()
|
if: always()
|
||||||
steps:
|
steps:
|
||||||
- name: All tests passed
|
- name: All tests passed
|
||||||
|
|||||||
8
.github/workflows/update-known-versions.yml
vendored
8
.github/workflows/update-known-versions.yml
vendored
@@ -15,10 +15,10 @@ jobs:
|
|||||||
contents: write
|
contents: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: true
|
persist-credentials: true
|
||||||
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
|
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
|
||||||
with:
|
with:
|
||||||
node-version: "20"
|
node-version: "20"
|
||||||
- name: Update known versions
|
- name: Update known versions
|
||||||
@@ -39,7 +39,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
- name: Compile changes
|
- name: Compile changes
|
||||||
if: ${{ steps.changes-exist.outputs.changes-exist == 'true' }}
|
if: ${{ steps.changes-exist.outputs.changes-exist == 'true' }}
|
||||||
run: npm ci && npm run all
|
run: npm ci --ignore-scripts && npm run all
|
||||||
- name: Commit and push changes
|
- name: Commit and push changes
|
||||||
if: ${{ steps.changes-exist.outputs.changes-exist == 'true' }}
|
if: ${{ steps.changes-exist.outputs.changes-exist == 'true' }}
|
||||||
id: commit-and-push
|
id: commit-and-push
|
||||||
@@ -55,7 +55,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
if: ${{ steps.changes-exist.outputs.changes-exist == 'true' && steps.commit-and-push.outcome != 'success' }}
|
if: ${{ steps.changes-exist.outputs.changes-exist == 'true' && steps.commit-and-push.outcome != 'success' }}
|
||||||
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
|
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
|
||||||
with:
|
with:
|
||||||
commit-message: "chore: update known checksums"
|
commit-message: "chore: update known checksums"
|
||||||
title:
|
title:
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||||
with:
|
with:
|
||||||
persist-credentials: true # needed for git push below
|
persist-credentials: true # needed for git push below
|
||||||
- name: Update Major Minor Tags
|
- name: Update Major Minor Tags
|
||||||
|
|||||||
@@ -125,6 +125,8 @@ Have a look under [Advanced Configuration](#advanced-configuration) for detailed
|
|||||||
- `uvx-path`: The path to the installed uvx binary.
|
- `uvx-path`: The path to the installed uvx binary.
|
||||||
- `cache-hit`: A boolean value to indicate a cache entry was found.
|
- `cache-hit`: A boolean value to indicate a cache entry was found.
|
||||||
- `venv`: Path to the activated venv if activate-environment is true.
|
- `venv`: Path to the activated venv if activate-environment is true.
|
||||||
|
- `python-version`: The Python version that was set.
|
||||||
|
- `python-cache-hit`: A boolean value to indicate the Python cache entry was found.
|
||||||
|
|
||||||
### Python version
|
### Python version
|
||||||
|
|
||||||
@@ -200,7 +202,8 @@ by name (`uv`).
|
|||||||
With `setup-uv`, you can install a specific version of Python using `uv python install` rather than
|
With `setup-uv`, you can install a specific version of Python using `uv python install` rather than
|
||||||
relying on `actions/setup-python`.
|
relying on `actions/setup-python`.
|
||||||
|
|
||||||
Using `actions/setup-python` can be faster, because GitHub caches the Python versions alongside the runner.
|
Using `actions/setup-python` can be faster (~1s), because GitHub includes several Python versions in the runner image
|
||||||
|
which are available to get activated by `actions/setup-python` without having to download them.
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
|
|||||||
@@ -29,9 +29,9 @@ it.each<KnownVersionFixture>([
|
|||||||
known: false,
|
known: false,
|
||||||
version: "0.0.15",
|
version: "0.0.15",
|
||||||
},
|
},
|
||||||
])(
|
])("isknownVersion should return $known for version $version", ({
|
||||||
"isknownVersion should return $known for version $version",
|
version,
|
||||||
({ version, known }) => {
|
known,
|
||||||
|
}) => {
|
||||||
expect(isknownVersion(version)).toBe(known);
|
expect(isknownVersion(version)).toBe(known);
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|||||||
@@ -9,5 +9,5 @@ dependencies = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["hatchling"]
|
requires = ["uv_build>=0.9.22,<0.10.0"]
|
||||||
build-backend = "hatchling.build"
|
build-backend = "uv_build"
|
||||||
|
|||||||
@@ -1,33 +1,9 @@
|
|||||||
version = 1
|
version = 1
|
||||||
requires-python = ">=3.12"
|
revision = 3
|
||||||
|
requires-python = ">=3.8, <=3.9"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ruff"
|
name = "old-python-constraint-project"
|
||||||
version = "0.6.2"
|
|
||||||
source = { registry = "https://pypi.org/simple" }
|
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/23/f4/279d044f66b79261fd37df76bf72b64471afab5d3b7906a01499c4451910/ruff-0.6.2.tar.gz", hash = "sha256:239ee6beb9e91feb8e0ec384204a763f36cb53fb895a1a364618c6abb076b3be", size = 2460281 }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/72/4b/47dd7a69287afb4069fa42c198e899463605460a58120196711bfcf0446b/ruff-0.6.2-py3-none-linux_armv6l.whl", hash = "sha256:5c8cbc6252deb3ea840ad6a20b0f8583caab0c5ef4f9cca21adc5a92b8f79f3c", size = 9695871 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/ae/c3/8aac62ac4638c14a740ee76a755a925f2d0d04580ab790a9887accb729f6/ruff-0.6.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:17002fe241e76544448a8e1e6118abecbe8cd10cf68fde635dad480dba594570", size = 9459354 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/2f/cf/77fbd8d4617b9b9c503f9bffb8552c4e3ea1a58dc36975e7a9104ffb0f85/ruff-0.6.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:3dbeac76ed13456f8158b8f4fe087bf87882e645c8e8b606dd17b0b66c2c1158", size = 9163871 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/05/1c/765192bab32b79efbb498b06f0b9dcb3629112b53b8777ae1d19b8209e09/ruff-0.6.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:094600ee88cda325988d3f54e3588c46de5c18dae09d683ace278b11f9d4d534", size = 10096250 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/08/d0/86f3cb0f6934c99f759c232984a5204d67a26745cad2d9edff6248adf7d2/ruff-0.6.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:316d418fe258c036ba05fbf7dfc1f7d3d4096db63431546163b472285668132b", size = 9475376 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/cd/cc/4c8d0e225b559a3fae6092ec310d7150d3b02b4669e9223f783ef64d82c0/ruff-0.6.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d72b8b3abf8a2d51b7b9944a41307d2f442558ccb3859bbd87e6ae9be1694a5d", size = 10295634 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/db/96/d2699cfb1bb5a01c68122af43454c76c31331e1c8a9bd97d653d7c82524b/ruff-0.6.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:2aed7e243be68487aa8982e91c6e260982d00da3f38955873aecd5a9204b1d66", size = 11024941 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/8b/a9/6ecd66af8929e0f2a1ed308a4137f3521789f28f0eb97d32c2ca3aa7000c/ruff-0.6.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d371f7fc9cec83497fe7cf5eaf5b76e22a8efce463de5f775a1826197feb9df8", size = 10606894 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/e4/73/2ee4cd19f44992fedac1cc6db9e3d825966072f6dcbd4032f21cbd063170/ruff-0.6.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8f310d63af08f583363dfb844ba8f9417b558199c58a5999215082036d795a1", size = 11552886 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/60/4c/c0f1cd35ce4a93c54a6bb1ee6934a3a205fa02198dd076678193853ceea1/ruff-0.6.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7db6880c53c56addb8638fe444818183385ec85eeada1d48fc5abe045301b2f1", size = 10264945 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/c4/89/e45c9359b9cdd4245512ea2b9f2bb128a997feaa5f726fc9e8c7a66afadf/ruff-0.6.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:1175d39faadd9a50718f478d23bfc1d4da5743f1ab56af81a2b6caf0a2394f23", size = 10100007 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/06/74/0bd4e0a7ed5f6908df87892f9bf60a2356c0fd74102d8097298bd9b4f346/ruff-0.6.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:5b939f9c86d51635fe486585389f54582f0d65b8238e08c327c1534844b3bb9a", size = 9559267 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/54/03/3dc6dc9419f276f05805bf888c279e3e0b631284abd548d9e87cebb93aec/ruff-0.6.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:d0d62ca91219f906caf9b187dea50d17353f15ec9bb15aae4a606cd697b49b4c", size = 9905304 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/5c/5b/d6a72a6a6bbf097c09de468326ef5fa1c9e7aa5e6e45979bc0d984b0dbe7/ruff-0.6.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:7438a7288f9d67ed3c8ce4d059e67f7ed65e9fe3aa2ab6f5b4b3610e57e3cb56", size = 10341480 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/79/a9/0f2f21fe15ba537c46598f96aa9ae4a3d4b9ec64926664617ca6a8c772f4/ruff-0.6.2-py3-none-win32.whl", hash = "sha256:279d5f7d86696df5f9549b56b9b6a7f6c72961b619022b5b7999b15db392a4da", size = 7961901 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/b0/80/fff12ffe11853d9f4ea3e5221e6dd2e93640a161c05c9579833e09ad40a7/ruff-0.6.2-py3-none-win_amd64.whl", hash = "sha256:d9f3469c7dd43cd22eb1c3fc16926fb8258d50cb1b216658a07be95dd117b0f2", size = 8783320 },
|
|
||||||
{ url = "https://files.pythonhosted.org/packages/56/91/577cdd64cce5e74d3f8b5ecb93f29566def569c741eb008aed4f331ef821/ruff-0.6.2-py3-none-win_arm64.whl", hash = "sha256:f28fcd2cd0e02bdf739297516d5643a945cc7caf09bd9bcb4d932540a5ea4fa9", size = 8225886 },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "uv-project"
|
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
@@ -35,4 +11,30 @@ dependencies = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[package.metadata]
|
[package.metadata]
|
||||||
requires-dist = [{ name = "ruff" }]
|
requires-dist = [{ name = "ruff", specifier = ">=0.6.2" }]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ruff"
|
||||||
|
version = "0.14.10"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/57/08/52232a877978dd8f9cf2aeddce3e611b40a63287dfca29b6b8da791f5e8d/ruff-0.14.10.tar.gz", hash = "sha256:9a2e830f075d1a42cd28420d7809ace390832a490ed0966fe373ba288e77aaf4", size = 5859763, upload-time = "2025-12-18T19:28:57.98Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/60/01/933704d69f3f05ee16ef11406b78881733c186fe14b6a46b05cfcaf6d3b2/ruff-0.14.10-py3-none-linux_armv6l.whl", hash = "sha256:7a3ce585f2ade3e1f29ec1b92df13e3da262178df8c8bdf876f48fa0e8316c49", size = 13527080, upload-time = "2025-12-18T19:29:25.642Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/df/58/a0349197a7dfa603ffb7f5b0470391efa79ddc327c1e29c4851e85b09cc5/ruff-0.14.10-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:674f9be9372907f7257c51f1d4fc902cb7cf014b9980152b802794317941f08f", size = 13797320, upload-time = "2025-12-18T19:29:02.571Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/7b/82/36be59f00a6082e38c23536df4e71cdbc6af8d7c707eade97fcad5c98235/ruff-0.14.10-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d85713d522348837ef9df8efca33ccb8bd6fcfc86a2cde3ccb4bc9d28a18003d", size = 12918434, upload-time = "2025-12-18T19:28:51.202Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/a6/00/45c62a7f7e34da92a25804f813ebe05c88aa9e0c25e5cb5a7d23dd7450e3/ruff-0.14.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6987ebe0501ae4f4308d7d24e2d0fe3d7a98430f5adfd0f1fead050a740a3a77", size = 13371961, upload-time = "2025-12-18T19:29:04.991Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/40/31/a5906d60f0405f7e57045a70f2d57084a93ca7425f22e1d66904769d1628/ruff-0.14.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:16a01dfb7b9e4eee556fbfd5392806b1b8550c9b4a9f6acd3dbe6812b193c70a", size = 13275629, upload-time = "2025-12-18T19:29:21.381Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/3e/60/61c0087df21894cf9d928dc04bcd4fb10e8b2e8dca7b1a276ba2155b2002/ruff-0.14.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7165d31a925b7a294465fa81be8c12a0e9b60fb02bf177e79067c867e71f8b1f", size = 14029234, upload-time = "2025-12-18T19:29:00.132Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/44/84/77d911bee3b92348b6e5dab5a0c898d87084ea03ac5dc708f46d88407def/ruff-0.14.10-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:c561695675b972effb0c0a45db233f2c816ff3da8dcfbe7dfc7eed625f218935", size = 15449890, upload-time = "2025-12-18T19:28:53.573Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/e9/36/480206eaefa24a7ec321582dda580443a8f0671fdbf6b1c80e9c3e93a16a/ruff-0.14.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4bb98fcbbc61725968893682fd4df8966a34611239c9fd07a1f6a07e7103d08e", size = 15123172, upload-time = "2025-12-18T19:29:23.453Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/5c/38/68e414156015ba80cef5473d57919d27dfb62ec804b96180bafdeaf0e090/ruff-0.14.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f24b47993a9d8cb858429e97bdf8544c78029f09b520af615c1d261bf827001d", size = 14460260, upload-time = "2025-12-18T19:29:27.808Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b3/19/9e050c0dca8aba824d67cc0db69fb459c28d8cd3f6855b1405b3f29cc91d/ruff-0.14.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59aabd2e2c4fd614d2862e7939c34a532c04f1084476d6833dddef4afab87e9f", size = 14229978, upload-time = "2025-12-18T19:29:11.32Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/51/eb/e8dd1dd6e05b9e695aa9dd420f4577debdd0f87a5ff2fedda33c09e9be8c/ruff-0.14.10-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:213db2b2e44be8625002dbea33bb9c60c66ea2c07c084a00d55732689d697a7f", size = 14338036, upload-time = "2025-12-18T19:29:09.184Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/6a/12/f3e3a505db7c19303b70af370d137795fcfec136d670d5de5391e295c134/ruff-0.14.10-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:b914c40ab64865a17a9a5b67911d14df72346a634527240039eb3bd650e5979d", size = 13264051, upload-time = "2025-12-18T19:29:13.431Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/08/64/8c3a47eaccfef8ac20e0484e68e0772013eb85802f8a9f7603ca751eb166/ruff-0.14.10-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:1484983559f026788e3a5c07c81ef7d1e97c1c78ed03041a18f75df104c45405", size = 13283998, upload-time = "2025-12-18T19:29:06.994Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/12/84/534a5506f4074e5cc0529e5cd96cfc01bb480e460c7edf5af70d2bcae55e/ruff-0.14.10-py3-none-musllinux_1_2_i686.whl", hash = "sha256:c70427132db492d25f982fffc8d6c7535cc2fd2c83fc8888f05caaa248521e60", size = 13601891, upload-time = "2025-12-18T19:28:55.811Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/0d/1e/14c916087d8598917dbad9b2921d340f7884824ad6e9c55de948a93b106d/ruff-0.14.10-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5bcf45b681e9f1ee6445d317ce1fa9d6cba9a6049542d1c3d5b5958986be8830", size = 14336660, upload-time = "2025-12-18T19:29:16.531Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/f2/1c/d7b67ab43f30013b47c12b42d1acd354c195351a3f7a1d67f59e54227ede/ruff-0.14.10-py3-none-win32.whl", hash = "sha256:104c49fc7ab73f3f3a758039adea978869a918f31b73280db175b43a2d9b51d6", size = 13196187, upload-time = "2025-12-18T19:29:19.006Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/fb/9c/896c862e13886fae2af961bef3e6312db9ebc6adc2b156fe95e615dee8c1/ruff-0.14.10-py3-none-win_amd64.whl", hash = "sha256:466297bd73638c6bdf06485683e812db1c00c7ac96d4ddd0294a338c62fdc154", size = 14661283, upload-time = "2025-12-18T19:29:30.16Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/74/31/b0e29d572670dca3674eeee78e418f20bdf97fa8aa9ea71380885e175ca0/ruff-0.14.10-py3-none-win_arm64.whl", hash = "sha256:e51d046cf6dda98a4633b8a8a771451107413b0f07183b2bef03f075599e44e6", size = 13729839, upload-time = "2025-12-18T19:28:48.636Z" },
|
||||||
|
]
|
||||||
|
|||||||
75
action-types.yml
Normal file
75
action-types.yml
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
# See https://github.com/typesafegithub/github-actions-typing
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
type: string
|
||||||
|
version-file:
|
||||||
|
type: string
|
||||||
|
python-version:
|
||||||
|
type: string
|
||||||
|
activate-environment:
|
||||||
|
type: boolean
|
||||||
|
working-directory:
|
||||||
|
type: string
|
||||||
|
checksum:
|
||||||
|
type: string
|
||||||
|
github-token:
|
||||||
|
type: string
|
||||||
|
enable-cache:
|
||||||
|
type: enum
|
||||||
|
allowed-values:
|
||||||
|
- "true"
|
||||||
|
- "false"
|
||||||
|
- auto
|
||||||
|
cache-dependency-glob:
|
||||||
|
type: list
|
||||||
|
separator: "\n"
|
||||||
|
list-item:
|
||||||
|
type: string
|
||||||
|
restore-cache:
|
||||||
|
type: boolean
|
||||||
|
save-cache:
|
||||||
|
type: boolean
|
||||||
|
cache-suffix:
|
||||||
|
type: string
|
||||||
|
cache-local-path:
|
||||||
|
type: string
|
||||||
|
prune-cache:
|
||||||
|
type: boolean
|
||||||
|
cache-python:
|
||||||
|
type: boolean
|
||||||
|
ignore-nothing-to-cache:
|
||||||
|
type: boolean
|
||||||
|
ignore-empty-workdir:
|
||||||
|
type: boolean
|
||||||
|
tool-dir:
|
||||||
|
type: string
|
||||||
|
tool-bin-dir:
|
||||||
|
type: string
|
||||||
|
manifest-file:
|
||||||
|
type: string
|
||||||
|
add-problem-matchers:
|
||||||
|
type: boolean
|
||||||
|
resolution-strategy:
|
||||||
|
type: enum
|
||||||
|
allowed-values:
|
||||||
|
- highest
|
||||||
|
- lowest
|
||||||
|
|
||||||
|
outputs:
|
||||||
|
uv-version:
|
||||||
|
type: string
|
||||||
|
uv-path:
|
||||||
|
type: string
|
||||||
|
uvx-path:
|
||||||
|
type: string
|
||||||
|
cache-hit:
|
||||||
|
type: boolean
|
||||||
|
cache-key:
|
||||||
|
type: string
|
||||||
|
venv:
|
||||||
|
type: string
|
||||||
|
python-version:
|
||||||
|
type: string
|
||||||
|
python-cache-hit:
|
||||||
|
type: boolean
|
||||||
@@ -89,8 +89,14 @@ outputs:
|
|||||||
description: "The path to the installed uvx binary."
|
description: "The path to the installed uvx binary."
|
||||||
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"
|
||||||
|
cache-key:
|
||||||
|
description: "The cache key used for storing/restoring the cache"
|
||||||
venv:
|
venv:
|
||||||
description: "Path to the activated venv if activate-environment is true"
|
description: "Path to the activated venv if activate-environment is true"
|
||||||
|
python-version:
|
||||||
|
description: "The Python version that was set."
|
||||||
|
python-cache-hit:
|
||||||
|
description: "A boolean value to indicate the Python cache entry was found"
|
||||||
runs:
|
runs:
|
||||||
using: "node24"
|
using: "node24"
|
||||||
main: "dist/setup/index.js"
|
main: "dist/setup/index.js"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
|
"$schema": "https://biomejs.dev/schemas/2.3.7/schema.json",
|
||||||
"assist": {
|
"assist": {
|
||||||
"actions": {
|
"actions": {
|
||||||
"source": {
|
"source": {
|
||||||
@@ -18,7 +18,8 @@
|
|||||||
"!**/node_modules",
|
"!**/node_modules",
|
||||||
"!**/package*.json",
|
"!**/package*.json",
|
||||||
"!**/known-checksums.*"
|
"!**/known-checksums.*"
|
||||||
]
|
],
|
||||||
|
"maxSize": 2097152
|
||||||
},
|
},
|
||||||
"formatter": {
|
"formatter": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
|
|||||||
258
dist/save-cache/index.js
generated
vendored
258
dist/save-cache/index.js
generated
vendored
@@ -90599,42 +90599,52 @@ var __importStar = (this && this.__importStar) || (function () {
|
|||||||
};
|
};
|
||||||
})();
|
})();
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.STATE_CACHE_MATCHED_KEY = exports.STATE_CACHE_KEY = void 0;
|
exports.STATE_PYTHON_CACHE_MATCHED_KEY = exports.STATE_CACHE_MATCHED_KEY = exports.STATE_CACHE_KEY = void 0;
|
||||||
exports.restoreCache = restoreCache;
|
exports.restoreCache = restoreCache;
|
||||||
const cache = __importStar(__nccwpck_require__(5116));
|
const cache = __importStar(__nccwpck_require__(5116));
|
||||||
const core = __importStar(__nccwpck_require__(7484));
|
const core = __importStar(__nccwpck_require__(7484));
|
||||||
const exec = __importStar(__nccwpck_require__(5236));
|
|
||||||
const hash_files_1 = __nccwpck_require__(9660);
|
const hash_files_1 = __nccwpck_require__(9660);
|
||||||
const inputs_1 = __nccwpck_require__(9612);
|
const inputs_1 = __nccwpck_require__(9612);
|
||||||
const platforms_1 = __nccwpck_require__(8361);
|
const platforms_1 = __nccwpck_require__(8361);
|
||||||
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";
|
exports.STATE_PYTHON_CACHE_MATCHED_KEY = "python-cache-matched-key";
|
||||||
async function restoreCache() {
|
const CACHE_VERSION = "2";
|
||||||
const cacheKey = await computeKeys();
|
async function restoreCache(pythonVersion) {
|
||||||
|
const cacheKey = await computeKeys(pythonVersion);
|
||||||
core.saveState(exports.STATE_CACHE_KEY, cacheKey);
|
core.saveState(exports.STATE_CACHE_KEY, cacheKey);
|
||||||
|
core.setOutput("cache-key", cacheKey);
|
||||||
if (!inputs_1.restoreCache) {
|
if (!inputs_1.restoreCache) {
|
||||||
core.info("restore-cache is false. Skipping restore cache step.");
|
core.info("restore-cache is false. Skipping restore cache step.");
|
||||||
|
core.setOutput("python-cache-hit", false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let matchedKey;
|
if (inputs_1.cacheLocalPath === undefined) {
|
||||||
core.info(`Trying to restore uv cache from GitHub Actions cache with key: ${cacheKey}`);
|
throw new Error("cache-local-path is not set. Cannot restore cache without a valid cache path.");
|
||||||
const cachePaths = [inputs_1.cacheLocalPath];
|
|
||||||
if (inputs_1.cachePython) {
|
|
||||||
cachePaths.push(inputs_1.pythonDir);
|
|
||||||
}
|
}
|
||||||
|
await restoreCacheFromKey(cacheKey, inputs_1.cacheLocalPath.path, exports.STATE_CACHE_MATCHED_KEY, "cache-hit");
|
||||||
|
if (inputs_1.cachePython) {
|
||||||
|
await restoreCacheFromKey(`${cacheKey}-python`, inputs_1.pythonDir, exports.STATE_PYTHON_CACHE_MATCHED_KEY, "python-cache-hit");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
core.setOutput("python-cache-hit", false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function restoreCacheFromKey(cacheKey, cachePath, stateKey, outputKey) {
|
||||||
|
core.info(`Trying to restore cache from GitHub Actions cache with key: ${cacheKey}`);
|
||||||
|
let matchedKey;
|
||||||
try {
|
try {
|
||||||
matchedKey = await cache.restoreCache(cachePaths, cacheKey);
|
matchedKey = await cache.restoreCache([cachePath], cacheKey);
|
||||||
}
|
}
|
||||||
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(outputKey, false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
handleMatchResult(matchedKey, cacheKey);
|
handleMatchResult(matchedKey, cacheKey, stateKey, outputKey);
|
||||||
}
|
}
|
||||||
async function computeKeys() {
|
async function computeKeys(pythonVersion) {
|
||||||
let cacheDependencyPathHash = "-";
|
let cacheDependencyPathHash = "-";
|
||||||
if (inputs_1.cacheDependencyGlob !== "") {
|
if (inputs_1.cacheDependencyGlob !== "") {
|
||||||
core.info(`Searching files using cache dependency glob: ${inputs_1.cacheDependencyGlob.split("\n").join(",")}`);
|
core.info(`Searching files using cache dependency glob: ${inputs_1.cacheDependencyGlob.split("\n").join(",")}`);
|
||||||
@@ -90647,49 +90657,22 @@ async function computeKeys() {
|
|||||||
cacheDependencyPathHash = "-no-dependency-glob";
|
cacheDependencyPathHash = "-no-dependency-glob";
|
||||||
}
|
}
|
||||||
const suffix = inputs_1.cacheSuffix ? `-${inputs_1.cacheSuffix}` : "";
|
const suffix = inputs_1.cacheSuffix ? `-${inputs_1.cacheSuffix}` : "";
|
||||||
const pythonVersion = await getPythonVersion();
|
const version = pythonVersion ?? "unknown";
|
||||||
const platform = await (0, platforms_1.getPlatform)();
|
const platform = await (0, platforms_1.getPlatform)();
|
||||||
|
const osNameVersion = (0, platforms_1.getOSNameVersion)();
|
||||||
const pruned = inputs_1.pruneCache ? "-pruned" : "";
|
const pruned = inputs_1.pruneCache ? "-pruned" : "";
|
||||||
const python = inputs_1.cachePython ? "-py" : "";
|
const python = inputs_1.cachePython ? "-py" : "";
|
||||||
return `setup-uv-${CACHE_VERSION}-${(0, platforms_1.getArch)()}-${platform}-${pythonVersion}${pruned}${python}${cacheDependencyPathHash}${suffix}`;
|
return `setup-uv-${CACHE_VERSION}-${(0, platforms_1.getArch)()}-${platform}-${osNameVersion}-${version}${pruned}${python}${cacheDependencyPathHash}${suffix}`;
|
||||||
}
|
}
|
||||||
async function getPythonVersion() {
|
function handleMatchResult(matchedKey, primaryKey, stateKey, outputKey) {
|
||||||
if (inputs_1.pythonVersion !== "") {
|
|
||||||
return inputs_1.pythonVersion;
|
|
||||||
}
|
|
||||||
let output = "";
|
|
||||||
const options = {
|
|
||||||
listeners: {
|
|
||||||
stdout: (data) => {
|
|
||||||
output += data.toString();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
silent: !core.isDebug(),
|
|
||||||
};
|
|
||||||
try {
|
|
||||||
const execArgs = ["python", "find", "--directory", inputs_1.workingDirectory];
|
|
||||||
await exec.exec("uv", execArgs, options);
|
|
||||||
const pythonPath = output.trim();
|
|
||||||
output = "";
|
|
||||||
await exec.exec(pythonPath, ["--version"], options);
|
|
||||||
// output is like "Python 3.8.10"
|
|
||||||
return output.split(" ")[1].trim();
|
|
||||||
}
|
|
||||||
catch (error) {
|
|
||||||
const err = error;
|
|
||||||
core.debug(`Failed to get python version from uv. Error: ${err.message}`);
|
|
||||||
return "unknown";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
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(outputKey, false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
core.saveState(exports.STATE_CACHE_MATCHED_KEY, matchedKey);
|
core.saveState(stateKey, matchedKey);
|
||||||
core.info(`uv cache restored from GitHub Actions cache with key: ${matchedKey}`);
|
core.info(`cache restored from GitHub Actions cache with key: ${matchedKey}`);
|
||||||
core.setOutput("cache-hit", true);
|
core.setOutput(outputKey, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -90863,42 +90846,17 @@ async function saveCache() {
|
|||||||
}
|
}
|
||||||
if (matchedKey === cacheKey) {
|
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;
|
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
if (inputs_1.pruneCache) {
|
if (inputs_1.pruneCache) {
|
||||||
await pruneCache();
|
await pruneCache();
|
||||||
}
|
}
|
||||||
let actualCachePath = inputs_1.cacheLocalPath;
|
const actualCachePath = getUvCachePath();
|
||||||
if (process.env.UV_CACHE_DIR && process.env.UV_CACHE_DIR !== inputs_1.cacheLocalPath) {
|
await saveCacheToKey(cacheKey, actualCachePath, restore_cache_1.STATE_CACHE_MATCHED_KEY, "uv cache", `Cache path ${actualCachePath} does not exist on disk. This likely indicates that there are no dependencies to cache. Consider disabling the cache input if it is not needed.`);
|
||||||
core.warning(`The environment variable UV_CACHE_DIR has been changed to "${process.env.UV_CACHE_DIR}", by an action or step running after astral-sh/setup-uv. This can lead to unexpected behavior. If you expected this to happen set the cache-local-path input to "${process.env.UV_CACHE_DIR}" instead of "${inputs_1.cacheLocalPath}".`);
|
|
||||||
actualCachePath = process.env.UV_CACHE_DIR;
|
|
||||||
}
|
}
|
||||||
core.info(`Saving cache path: ${actualCachePath}`);
|
|
||||||
if (!fs.existsSync(actualCachePath) && !inputs_1.ignoreNothingToCache) {
|
|
||||||
throw new Error(`Cache path ${actualCachePath} does not exist on disk. This likely indicates that there are no dependencies to cache. Consider disabling the cache input if it is not needed.`);
|
|
||||||
}
|
|
||||||
const cachePaths = [actualCachePath];
|
|
||||||
if (inputs_1.cachePython) {
|
if (inputs_1.cachePython) {
|
||||||
core.info(`Including Python cache path: ${inputs_1.pythonDir}`);
|
const pythonCacheKey = `${cacheKey}-python`;
|
||||||
if (!fs.existsSync(inputs_1.pythonDir) && !inputs_1.ignoreNothingToCache) {
|
await saveCacheToKey(pythonCacheKey, inputs_1.pythonDir, restore_cache_1.STATE_PYTHON_CACHE_MATCHED_KEY, "Python cache", `Python cache path ${inputs_1.pythonDir} does not exist on disk. This likely indicates that there are no Python installations to cache. Consider disabling the cache input if it is not needed.`);
|
||||||
throw new Error(`Python cache path ${inputs_1.pythonDir} does not exist on disk. This likely indicates that there are no dependencies to cache. Consider disabling the cache input if it is not needed.`);
|
|
||||||
}
|
|
||||||
cachePaths.push(inputs_1.pythonDir);
|
|
||||||
}
|
|
||||||
core.info(`Final cache paths: ${cachePaths.join(", ")}`);
|
|
||||||
try {
|
|
||||||
await cache.saveCache(cachePaths, cacheKey);
|
|
||||||
core.info(`cache saved with the key: ${cacheKey}`);
|
|
||||||
}
|
|
||||||
catch (e) {
|
|
||||||
if (e instanceof Error &&
|
|
||||||
e.message ===
|
|
||||||
"Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.") {
|
|
||||||
core.info("No cacheable paths were found. Ignoring because ignore-nothing-to-save is enabled.");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async function pruneCache() {
|
async function pruneCache() {
|
||||||
@@ -90914,6 +90872,42 @@ async function pruneCache() {
|
|||||||
const uvPath = core.getState(constants_1.STATE_UV_PATH);
|
const uvPath = core.getState(constants_1.STATE_UV_PATH);
|
||||||
await exec.exec(uvPath, execArgs, options);
|
await exec.exec(uvPath, execArgs, options);
|
||||||
}
|
}
|
||||||
|
function getUvCachePath() {
|
||||||
|
if (inputs_1.cacheLocalPath === undefined) {
|
||||||
|
throw new Error("cache-local-path is not set. Cannot save cache without a valid cache path.");
|
||||||
|
}
|
||||||
|
if (process.env.UV_CACHE_DIR &&
|
||||||
|
process.env.UV_CACHE_DIR !== inputs_1.cacheLocalPath.path) {
|
||||||
|
core.warning(`The environment variable UV_CACHE_DIR has been changed to "${process.env.UV_CACHE_DIR}", by an action or step running after astral-sh/setup-uv. This can lead to unexpected behavior. If you expected this to happen set the cache-local-path input to "${process.env.UV_CACHE_DIR}" instead of "${inputs_1.cacheLocalPath.path}".`);
|
||||||
|
return process.env.UV_CACHE_DIR;
|
||||||
|
}
|
||||||
|
return inputs_1.cacheLocalPath.path;
|
||||||
|
}
|
||||||
|
async function saveCacheToKey(cacheKey, cachePath, stateKey, cacheName, pathNotExistErrorMessage) {
|
||||||
|
const matchedKey = core.getState(stateKey);
|
||||||
|
if (matchedKey === cacheKey) {
|
||||||
|
core.info(`${cacheName} hit occurred on key ${cacheKey}, not saving cache.`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
core.info(`Including ${cacheName} path: ${cachePath}`);
|
||||||
|
if (!fs.existsSync(cachePath) && !inputs_1.ignoreNothingToCache) {
|
||||||
|
throw new Error(pathNotExistErrorMessage);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
await cache.saveCache([cachePath], cacheKey);
|
||||||
|
core.info(`${cacheName} saved with key: ${cacheKey}`);
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
if (e instanceof Error &&
|
||||||
|
e.message ===
|
||||||
|
"Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.") {
|
||||||
|
core.info(`No cacheable ${cacheName} paths were found. Ignoring because ignore-nothing-to-save is enabled.`);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
run();
|
run();
|
||||||
|
|
||||||
|
|
||||||
@@ -91038,11 +91032,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.resolutionStrategy = exports.addProblemMatchers = exports.manifestFile = exports.githubToken = exports.pythonDir = exports.toolDir = exports.toolBinDir = exports.ignoreEmptyWorkdir = exports.ignoreNothingToCache = exports.cachePython = exports.pruneCache = exports.cacheDependencyGlob = exports.cacheLocalPath = exports.cacheSuffix = exports.saveCache = exports.restoreCache = exports.enableCache = exports.checkSum = exports.activateEnvironment = exports.pythonVersion = exports.versionFile = exports.version = exports.workingDirectory = void 0;
|
exports.resolutionStrategy = exports.addProblemMatchers = exports.manifestFile = exports.githubToken = exports.pythonDir = exports.toolDir = exports.toolBinDir = exports.ignoreEmptyWorkdir = exports.ignoreNothingToCache = exports.cachePython = exports.pruneCache = exports.cacheDependencyGlob = exports.cacheLocalPath = exports.cacheSuffix = exports.saveCache = exports.restoreCache = exports.enableCache = exports.checkSum = exports.activateEnvironment = exports.pythonVersion = exports.versionFile = exports.version = exports.workingDirectory = exports.CacheLocalSource = void 0;
|
||||||
exports.getUvPythonDir = getUvPythonDir;
|
exports.getUvPythonDir = getUvPythonDir;
|
||||||
const node_path_1 = __importDefault(__nccwpck_require__(6760));
|
const node_path_1 = __importDefault(__nccwpck_require__(6760));
|
||||||
const core = __importStar(__nccwpck_require__(7484));
|
const core = __importStar(__nccwpck_require__(7484));
|
||||||
const config_file_1 = __nccwpck_require__(7846);
|
const config_file_1 = __nccwpck_require__(7846);
|
||||||
|
var CacheLocalSource;
|
||||||
|
(function (CacheLocalSource) {
|
||||||
|
CacheLocalSource[CacheLocalSource["Input"] = 0] = "Input";
|
||||||
|
CacheLocalSource[CacheLocalSource["Config"] = 1] = "Config";
|
||||||
|
CacheLocalSource[CacheLocalSource["Env"] = 2] = "Env";
|
||||||
|
CacheLocalSource[CacheLocalSource["Default"] = 3] = "Default";
|
||||||
|
})(CacheLocalSource || (exports.CacheLocalSource = CacheLocalSource = {}));
|
||||||
exports.workingDirectory = core.getInput("working-directory");
|
exports.workingDirectory = core.getInput("working-directory");
|
||||||
exports.version = core.getInput("version");
|
exports.version = core.getInput("version");
|
||||||
exports.versionFile = getVersionFile();
|
exports.versionFile = getVersionFile();
|
||||||
@@ -91113,26 +91114,40 @@ function getCacheLocalPath() {
|
|||||||
const cacheLocalPathInput = core.getInput("cache-local-path");
|
const cacheLocalPathInput = core.getInput("cache-local-path");
|
||||||
if (cacheLocalPathInput !== "") {
|
if (cacheLocalPathInput !== "") {
|
||||||
const tildeExpanded = expandTilde(cacheLocalPathInput);
|
const tildeExpanded = expandTilde(cacheLocalPathInput);
|
||||||
return resolveRelativePath(tildeExpanded);
|
return {
|
||||||
|
path: resolveRelativePath(tildeExpanded),
|
||||||
|
source: CacheLocalSource.Input,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
const cacheDirFromConfig = getCacheDirFromConfig();
|
const cacheDirFromConfig = getCacheDirFromConfig();
|
||||||
if (cacheDirFromConfig !== undefined) {
|
if (cacheDirFromConfig !== undefined) {
|
||||||
return cacheDirFromConfig;
|
return { path: cacheDirFromConfig, source: CacheLocalSource.Config };
|
||||||
}
|
}
|
||||||
if (process.env.UV_CACHE_DIR !== undefined) {
|
if (process.env.UV_CACHE_DIR !== undefined) {
|
||||||
core.info(`UV_CACHE_DIR is already set to ${process.env.UV_CACHE_DIR}`);
|
core.info(`UV_CACHE_DIR is already set to ${process.env.UV_CACHE_DIR}`);
|
||||||
return process.env.UV_CACHE_DIR;
|
return { path: process.env.UV_CACHE_DIR, source: CacheLocalSource.Env };
|
||||||
}
|
}
|
||||||
|
if (getEnableCache()) {
|
||||||
if (process.env.RUNNER_ENVIRONMENT === "github-hosted") {
|
if (process.env.RUNNER_ENVIRONMENT === "github-hosted") {
|
||||||
if (process.env.RUNNER_TEMP !== undefined) {
|
if (process.env.RUNNER_TEMP !== undefined) {
|
||||||
return `${process.env.RUNNER_TEMP}${node_path_1.default.sep}setup-uv-cache`;
|
return {
|
||||||
|
path: `${process.env.RUNNER_TEMP}${node_path_1.default.sep}setup-uv-cache`,
|
||||||
|
source: CacheLocalSource.Default,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
throw Error("Could not determine UV_CACHE_DIR. Please make sure RUNNER_TEMP is set or provide the cache-local-path input");
|
throw Error("Could not determine UV_CACHE_DIR. Please make sure RUNNER_TEMP is set or provide the cache-local-path input");
|
||||||
}
|
}
|
||||||
if (process.platform === "win32") {
|
if (process.platform === "win32") {
|
||||||
return `${process.env.APPDATA}${node_path_1.default.sep}uv${node_path_1.default.sep}cache`;
|
return {
|
||||||
|
path: `${process.env.APPDATA}${node_path_1.default.sep}uv${node_path_1.default.sep}cache`,
|
||||||
|
source: CacheLocalSource.Default,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
path: `${process.env.HOME}${node_path_1.default.sep}.cache${node_path_1.default.sep}uv`,
|
||||||
|
source: CacheLocalSource.Default,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
return `${process.env.HOME}${node_path_1.default.sep}.cache${node_path_1.default.sep}uv`;
|
|
||||||
}
|
}
|
||||||
function getCacheDirFromConfig() {
|
function getCacheDirFromConfig() {
|
||||||
for (const filePath of [exports.versionFile, "uv.toml", "pyproject.toml"]) {
|
for (const filePath of [exports.versionFile, "uv.toml", "pyproject.toml"]) {
|
||||||
@@ -91254,9 +91269,15 @@ var __importStar = (this && this.__importStar) || (function () {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
})();
|
})();
|
||||||
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.getArch = getArch;
|
exports.getArch = getArch;
|
||||||
exports.getPlatform = getPlatform;
|
exports.getPlatform = getPlatform;
|
||||||
|
exports.getOSNameVersion = getOSNameVersion;
|
||||||
|
const node_fs_1 = __importDefault(__nccwpck_require__(3024));
|
||||||
|
const node_os_1 = __importDefault(__nccwpck_require__(8161));
|
||||||
const core = __importStar(__nccwpck_require__(7484));
|
const core = __importStar(__nccwpck_require__(7484));
|
||||||
const exec = __importStar(__nccwpck_require__(5236));
|
const exec = __importStar(__nccwpck_require__(5236));
|
||||||
function getArch() {
|
function getArch() {
|
||||||
@@ -91314,6 +91335,63 @@ async function isMuslOs() {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Returns OS name and version for cache key differentiation.
|
||||||
|
* Examples: "ubuntu-22.04", "macos-14", "windows-2022"
|
||||||
|
* Throws if OS detection fails.
|
||||||
|
*/
|
||||||
|
function getOSNameVersion() {
|
||||||
|
const platform = process.platform;
|
||||||
|
if (platform === "linux") {
|
||||||
|
return getLinuxOSNameVersion();
|
||||||
|
}
|
||||||
|
if (platform === "darwin") {
|
||||||
|
return getMacOSNameVersion();
|
||||||
|
}
|
||||||
|
if (platform === "win32") {
|
||||||
|
return getWindowsNameVersion();
|
||||||
|
}
|
||||||
|
throw new Error(`Unsupported platform: ${platform}`);
|
||||||
|
}
|
||||||
|
function getLinuxOSNameVersion() {
|
||||||
|
const files = ["/etc/os-release", "/usr/lib/os-release"];
|
||||||
|
for (const file of files) {
|
||||||
|
try {
|
||||||
|
const content = node_fs_1.default.readFileSync(file, "utf8");
|
||||||
|
const id = parseOsReleaseValue(content, "ID");
|
||||||
|
const versionId = parseOsReleaseValue(content, "VERSION_ID");
|
||||||
|
if (id && versionId) {
|
||||||
|
return `${id}-${versionId}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
// Try next file
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new Error("Failed to determine Linux distribution. " +
|
||||||
|
"Could not read /etc/os-release or /usr/lib/os-release");
|
||||||
|
}
|
||||||
|
function parseOsReleaseValue(content, key) {
|
||||||
|
const regex = new RegExp(`^${key}=["']?([^"'\\n]*)["']?$`, "m");
|
||||||
|
const match = content.match(regex);
|
||||||
|
return match?.[1];
|
||||||
|
}
|
||||||
|
function getMacOSNameVersion() {
|
||||||
|
const darwinVersion = Number.parseInt(node_os_1.default.release().split(".")[0], 10);
|
||||||
|
if (Number.isNaN(darwinVersion)) {
|
||||||
|
throw new Error(`Failed to parse macOS version from: ${node_os_1.default.release()}`);
|
||||||
|
}
|
||||||
|
const macosVersion = darwinVersion - 9;
|
||||||
|
return `macos-${macosVersion}`;
|
||||||
|
}
|
||||||
|
function getWindowsNameVersion() {
|
||||||
|
const version = node_os_1.default.version();
|
||||||
|
const match = version.match(/Windows(?: Server)? (\d+)/);
|
||||||
|
if (!match) {
|
||||||
|
throw new Error(`Failed to parse Windows version from: ${version}`);
|
||||||
|
}
|
||||||
|
return `windows-${match[1]}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
@@ -91454,6 +91532,14 @@ module.exports = require("node:fs");
|
|||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 8161:
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
module.exports = require("node:os");
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
/***/ 6760:
|
/***/ 6760:
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
|||||||
4731
dist/setup/index.js
generated
vendored
4731
dist/setup/index.js
generated
vendored
@@ -91502,42 +91502,52 @@ var __importStar = (this && this.__importStar) || (function () {
|
|||||||
};
|
};
|
||||||
})();
|
})();
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.STATE_CACHE_MATCHED_KEY = exports.STATE_CACHE_KEY = void 0;
|
exports.STATE_PYTHON_CACHE_MATCHED_KEY = exports.STATE_CACHE_MATCHED_KEY = exports.STATE_CACHE_KEY = void 0;
|
||||||
exports.restoreCache = restoreCache;
|
exports.restoreCache = restoreCache;
|
||||||
const cache = __importStar(__nccwpck_require__(5116));
|
const cache = __importStar(__nccwpck_require__(5116));
|
||||||
const core = __importStar(__nccwpck_require__(7484));
|
const core = __importStar(__nccwpck_require__(7484));
|
||||||
const exec = __importStar(__nccwpck_require__(5236));
|
|
||||||
const hash_files_1 = __nccwpck_require__(9660);
|
const hash_files_1 = __nccwpck_require__(9660);
|
||||||
const inputs_1 = __nccwpck_require__(9612);
|
const inputs_1 = __nccwpck_require__(9612);
|
||||||
const platforms_1 = __nccwpck_require__(8361);
|
const platforms_1 = __nccwpck_require__(8361);
|
||||||
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";
|
exports.STATE_PYTHON_CACHE_MATCHED_KEY = "python-cache-matched-key";
|
||||||
async function restoreCache() {
|
const CACHE_VERSION = "2";
|
||||||
const cacheKey = await computeKeys();
|
async function restoreCache(pythonVersion) {
|
||||||
|
const cacheKey = await computeKeys(pythonVersion);
|
||||||
core.saveState(exports.STATE_CACHE_KEY, cacheKey);
|
core.saveState(exports.STATE_CACHE_KEY, cacheKey);
|
||||||
|
core.setOutput("cache-key", cacheKey);
|
||||||
if (!inputs_1.restoreCache) {
|
if (!inputs_1.restoreCache) {
|
||||||
core.info("restore-cache is false. Skipping restore cache step.");
|
core.info("restore-cache is false. Skipping restore cache step.");
|
||||||
|
core.setOutput("python-cache-hit", false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let matchedKey;
|
if (inputs_1.cacheLocalPath === undefined) {
|
||||||
core.info(`Trying to restore uv cache from GitHub Actions cache with key: ${cacheKey}`);
|
throw new Error("cache-local-path is not set. Cannot restore cache without a valid cache path.");
|
||||||
const cachePaths = [inputs_1.cacheLocalPath];
|
|
||||||
if (inputs_1.cachePython) {
|
|
||||||
cachePaths.push(inputs_1.pythonDir);
|
|
||||||
}
|
}
|
||||||
|
await restoreCacheFromKey(cacheKey, inputs_1.cacheLocalPath.path, exports.STATE_CACHE_MATCHED_KEY, "cache-hit");
|
||||||
|
if (inputs_1.cachePython) {
|
||||||
|
await restoreCacheFromKey(`${cacheKey}-python`, inputs_1.pythonDir, exports.STATE_PYTHON_CACHE_MATCHED_KEY, "python-cache-hit");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
core.setOutput("python-cache-hit", false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function restoreCacheFromKey(cacheKey, cachePath, stateKey, outputKey) {
|
||||||
|
core.info(`Trying to restore cache from GitHub Actions cache with key: ${cacheKey}`);
|
||||||
|
let matchedKey;
|
||||||
try {
|
try {
|
||||||
matchedKey = await cache.restoreCache(cachePaths, cacheKey);
|
matchedKey = await cache.restoreCache([cachePath], cacheKey);
|
||||||
}
|
}
|
||||||
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(outputKey, false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
handleMatchResult(matchedKey, cacheKey);
|
handleMatchResult(matchedKey, cacheKey, stateKey, outputKey);
|
||||||
}
|
}
|
||||||
async function computeKeys() {
|
async function computeKeys(pythonVersion) {
|
||||||
let cacheDependencyPathHash = "-";
|
let cacheDependencyPathHash = "-";
|
||||||
if (inputs_1.cacheDependencyGlob !== "") {
|
if (inputs_1.cacheDependencyGlob !== "") {
|
||||||
core.info(`Searching files using cache dependency glob: ${inputs_1.cacheDependencyGlob.split("\n").join(",")}`);
|
core.info(`Searching files using cache dependency glob: ${inputs_1.cacheDependencyGlob.split("\n").join(",")}`);
|
||||||
@@ -91550,49 +91560,22 @@ async function computeKeys() {
|
|||||||
cacheDependencyPathHash = "-no-dependency-glob";
|
cacheDependencyPathHash = "-no-dependency-glob";
|
||||||
}
|
}
|
||||||
const suffix = inputs_1.cacheSuffix ? `-${inputs_1.cacheSuffix}` : "";
|
const suffix = inputs_1.cacheSuffix ? `-${inputs_1.cacheSuffix}` : "";
|
||||||
const pythonVersion = await getPythonVersion();
|
const version = pythonVersion ?? "unknown";
|
||||||
const platform = await (0, platforms_1.getPlatform)();
|
const platform = await (0, platforms_1.getPlatform)();
|
||||||
|
const osNameVersion = (0, platforms_1.getOSNameVersion)();
|
||||||
const pruned = inputs_1.pruneCache ? "-pruned" : "";
|
const pruned = inputs_1.pruneCache ? "-pruned" : "";
|
||||||
const python = inputs_1.cachePython ? "-py" : "";
|
const python = inputs_1.cachePython ? "-py" : "";
|
||||||
return `setup-uv-${CACHE_VERSION}-${(0, platforms_1.getArch)()}-${platform}-${pythonVersion}${pruned}${python}${cacheDependencyPathHash}${suffix}`;
|
return `setup-uv-${CACHE_VERSION}-${(0, platforms_1.getArch)()}-${platform}-${osNameVersion}-${version}${pruned}${python}${cacheDependencyPathHash}${suffix}`;
|
||||||
}
|
}
|
||||||
async function getPythonVersion() {
|
function handleMatchResult(matchedKey, primaryKey, stateKey, outputKey) {
|
||||||
if (inputs_1.pythonVersion !== "") {
|
|
||||||
return inputs_1.pythonVersion;
|
|
||||||
}
|
|
||||||
let output = "";
|
|
||||||
const options = {
|
|
||||||
listeners: {
|
|
||||||
stdout: (data) => {
|
|
||||||
output += data.toString();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
silent: !core.isDebug(),
|
|
||||||
};
|
|
||||||
try {
|
|
||||||
const execArgs = ["python", "find", "--directory", inputs_1.workingDirectory];
|
|
||||||
await exec.exec("uv", execArgs, options);
|
|
||||||
const pythonPath = output.trim();
|
|
||||||
output = "";
|
|
||||||
await exec.exec(pythonPath, ["--version"], options);
|
|
||||||
// output is like "Python 3.8.10"
|
|
||||||
return output.split(" ")[1].trim();
|
|
||||||
}
|
|
||||||
catch (error) {
|
|
||||||
const err = error;
|
|
||||||
core.debug(`Failed to get python version from uv. Error: ${err.message}`);
|
|
||||||
return "unknown";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
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(outputKey, false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
core.saveState(exports.STATE_CACHE_MATCHED_KEY, matchedKey);
|
core.saveState(stateKey, matchedKey);
|
||||||
core.info(`uv cache restored from GitHub Actions cache with key: ${matchedKey}`);
|
core.info(`cache restored from GitHub Actions cache with key: ${matchedKey}`);
|
||||||
core.setOutput("cache-hit", true);
|
core.setOutput(outputKey, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -91696,6 +91679,276 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|||||||
exports.KNOWN_CHECKSUMS = void 0;
|
exports.KNOWN_CHECKSUMS = void 0;
|
||||||
// AUTOGENERATED_DO_NOT_EDIT
|
// AUTOGENERATED_DO_NOT_EDIT
|
||||||
exports.KNOWN_CHECKSUMS = {
|
exports.KNOWN_CHECKSUMS = {
|
||||||
|
"aarch64-apple-darwin-0.9.26": "fcf0a9ea6599c6ae28a4c854ac6da76f2c889354d7c36ce136ef071f7ab9721f",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.26": "79e1398ec98681b1b0494ed3485b0f4565e98a7db109a3f205d0fcdc6a1992f7",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.26": "f71040c59798f79c44c08a7a1c1af7de95a8d334ea924b47b67ad6b9632be270",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.26": "ba8698c36c00c22efed4bd3506339b03c95604d001f02eaf6fbc814c9224d801",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.26": "8baa850e6f7a4f8edeef411891780161e95682bf291c85405fdc331925c425c2",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.26": "f9cf9806b3bd434b4aca5de1a8412502a29bcbc908848cdea18e32480964ab79",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.26": "881df52998da192f0609be37abe445ab0d89f28daceecb171ea8a14088153aee",
|
||||||
|
"i686-pc-windows-msvc-0.9.26": "2fa5e36d7dc3053962a95a2583b2bcc19aab2ec6c5d4c887cca58de819cf77dd",
|
||||||
|
"i686-unknown-linux-gnu-0.9.26": "03548a2abd1d604724c9d65184b506d3eafef1b0a7d8cea974a083f5f9c9496f",
|
||||||
|
"i686-unknown-linux-musl-0.9.26": "5208601b9baee1a04a604f441bd94a1ab91b511f142b27729b073f4286994f8f",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.26": "6ac6baa2dd7db742ff58a2d54e3fc09693e69c878666bcacf9d49bc58decc98a",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.26": "1a7fbd268b7520e03747022f879113545a5bd71cad02e9cbabd591b268b5a36c",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.26": "9f202ad04cc398dc77a6efe20ea91ec044ad66e1f7a60777e6efd20a357f479a",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.26": "f8e6b8f1264821add1ea21d592b4522300401f44ac4124fba9fea6874fd79797",
|
||||||
|
"x86_64-apple-darwin-0.9.26": "171eb8c518313e157c5b4cec7b4f743bc6bab1bd23e09b646679a02d096a047f",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.26": "eb02fd95d8e0eed462b4a67ecdd320d865b38c560bffcda9a0b87ec944bdf036",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.26": "30ccbf0a66dc8727a02b0e245c583ee970bdafecf3a443c1686e1b30ec4939e8",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.26": "708b752876aeeb753257e1d55470569789e465684c1d3bc1760db26360b6c28b",
|
||||||
|
"aarch64-apple-darwin-0.9.25": "606b3c6949d971709f2526fa0d9f0fd23ccf60e09f117999b406b424af18a6a6",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.25": "6a4c2a753a94d9639725b435f5d1a65bfa25cd196d448ad60841f5fe81ef0052",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.25": "a8f1d71a42c4470251a880348b2d28d530018693324175084fa1749d267c98c6",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.25": "11cddffc61826e3b7af02db37bc3ed8e9e6747dad328d45c8b02f89408afbf75",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.25": "52f3a96605a7873ec44bb84c33ee08e717df61136fec121f715871cae5b779ec",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.25": "7ae274742a5b2398bd75f9075536c7f0b3f99ebc8c6588c37e3bfcd9cc9d781d",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.25": "77220a539dfffe576cdc9b9e9ab5432c07dd1b63915c859c227883af7ba00538",
|
||||||
|
"i686-pc-windows-msvc-0.9.25": "55dbf32074a76e029410620e7e3fbef9762799c7dfcf539b098ccc0a64cac9a3",
|
||||||
|
"i686-unknown-linux-gnu-0.9.25": "b9dae29f4e37bc89e69836e59169a51d8cac4da118b7548a20b2269b19c94cad",
|
||||||
|
"i686-unknown-linux-musl-0.9.25": "a84a159856a0227c273e86594d9cf8fbf84c56bd4eeeb9a665c946304c49dbec",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.25": "37bc519ebe5e4efb12fd155eb94512547a874f0e41251203b49d715f75eb5a20",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.25": "a01a273b5cd64ece96d4589afbacaf5e99a0695f37ebe9a72fd6b2f7cf0a7071",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.25": "9d9692f1bd5ff6d9db2c4bffc4ceeb8d8746ae03ddeca0b24a0f8fc9ea81b911",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.25": "92d5e4504ef83f421a841381678f871bf2a8821a69d3374dd638e2014d4762ab",
|
||||||
|
"x86_64-apple-darwin-0.9.25": "4982dfff14b3548bc85d0fa0abec6ab8ae62836b218bf1223741ba1392ef93bf",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.25": "d63f8e59cf76bcce9cb8a3eac6c1a89adce0f89a29bacca978c9bf842f419277",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.25": "fa1f4abfe101d43e820342210c3c6854028703770f81e95b119ed1e65ec81b35",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.25": "700776c376ce36ed5b731fcd699e141d897551f5111907987b63897e0c1ad797",
|
||||||
|
"aarch64-apple-darwin-0.9.24": "89661d9a16682197086df54bb43d0b03e58e23d4d9360fc8c6c0166f2828fd71",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.24": "40ceb66af2667fc9b4d30a65ad8b8795d4effc39a44019b4218ad03f8f1d5a14",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.24": "9b291a1a4f2fefc430e4fc49c00cb93eb448d41c5c79edf45211ceffedde3334",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.24": "b16359904ede857b90b68168f10b0f6bf500858df9bed4e7156dbc59fd3f0747",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.24": "b343d7f49ea5c0982c9696cbc5c7f96d7053cf8f9c7383a58d6c0c44fbeb6422",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.24": "8d05b55fe2108ecab3995c2b656679a72c543fd9dc72eeb3a525106a709cfdcb",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.24": "788d2bee1dfdb57a462f2a5c4e3d6e8c68ee9f9f1a938bdcdc00fa9e5edeaeec",
|
||||||
|
"i686-pc-windows-msvc-0.9.24": "b49265a713cb3f874bcb373572095993d3098ab77cd2665483f53b24b788e5e9",
|
||||||
|
"i686-unknown-linux-gnu-0.9.24": "940b8985c4d464c7cc69e40b17bf09d840b980028e1d82a3fb8dd007a737f29e",
|
||||||
|
"i686-unknown-linux-musl-0.9.24": "4ffe6f377b7d68904d8d882af8adc85f2fa1bbccd26151785ff961adb67f2a99",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.24": "1fbaff65544a2c36bbd8992e2abe6c50179401745dc00b5e12bded89794056a4",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.24": "57ea84430ccf49f97184d9ee21102b250214fc6e6af4a87eefaaf8bb7c9c2b9a",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.24": "81a884380f0ee954afd968140aaa55df19f2bee30d74f3c0c94a11d2265bb388",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.24": "3da41f22f78f27a7764e303b07c68f5716f748128327c7d3d72f11c6b81b6c78",
|
||||||
|
"x86_64-apple-darwin-0.9.24": "fda9b3203cce6ec3a37177440c33c4c1963c4957fff17e2820c60ab6ccd625da",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.24": "cf9d6fa12017199d19c6f9a8f7f55811c8c04d70681b8cb6d89ffb179f08cf1f",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.24": "fb13ad85106da6b21dd16613afca910994446fe94a78ee0b5bed9c75cd066078",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.24": "cf307aa4271038daa334ca64e75aa40c0c085ce6fa0c0e6f21e41a2b62c7904d",
|
||||||
|
"aarch64-apple-darwin-0.9.23": "3aae069424778d13ef45ebd2ec906c66ab10e459e7b33341a64cd371a3d70998",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.23": "dfdb23dbfa6c89847e4163f0b3b683de889df7d9bdf95a3909dfbc6430106304",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.23": "d60b0b2aee79f9d83897615fed427bee1ea4ebcb2f15b48dd522319ecdb3de91",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.23": "ee987d943427ee24c1d3af79c7ad676950c9ad634e60a4d07e328d8a54fff92f",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.23": "1950c235e76e007f75d30903dc5da6747a344c72a1608123feff720c134ecbfe",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.23": "a7104ab491a0c2f0c58760bcb9a13cfb64c899e02a7b747c4d11da114b3f9114",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.23": "c5d494337a5ca86ad83d6a887634fda3f8392560799e4236a44d76f8e27621b6",
|
||||||
|
"i686-pc-windows-msvc-0.9.23": "94292f02b7484616bb3cd7361411540a5a52e952d149eb6faeec610b6657015d",
|
||||||
|
"i686-unknown-linux-gnu-0.9.23": "627627174d31e6fa270e91c7b2988558e4b18b86cc31de9222b6cf3b7354e9b7",
|
||||||
|
"i686-unknown-linux-musl-0.9.23": "5f65a0eb1f9067a4f5149275faba3bcb3af94dd68fbce7cd9e93ba86b5bc59c3",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.23": "69e2925397d0e781e8525ad0fd22896a114ffa02f5055e7a360e4dda3796c24e",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.23": "fb3ad2cb1a19f1bb4785580dc71837161147beab134fdc3eb4e8ccda577db1e0",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.23": "0d1d9300e2df3155b0d0b071c292fb27f8213d91854decdfb27c293397dc8e0e",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.23": "7d0b411a365b0cd8fad2b336c259743e7381676654adfbdb4f887b4136820cb8",
|
||||||
|
"x86_64-apple-darwin-0.9.23": "b5bbfbd5d8c7effa24b505365ae306116fdac58880bc9b024ec4c89435d57728",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.23": "bb6d2987906b27d3031640c4a909b6f7c134cd29674c41ef545c6e7d57dd6700",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.23": "b7bd7d9b9c9c34327f1118f99fe8c298252787ea35f7b345b8bf639377f63217",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.23": "a824a0f5f7aa67b668f54756284d458a25dea332da6e558d303890d134cc06d1",
|
||||||
|
"aarch64-apple-darwin-0.9.22": "4bfc6dacc9bcc9e433a9214a658495ca082b94fd607949b6745a955f34ccbc3c",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.22": "19b848523d5802279702f5df4ade6d45f17d111cf9e368883d4f6560f0426d49",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.22": "2f8716c407d5da21b8a3e8609ed358147216aaab28b96b1d6d7f48e9bcc6254e",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.22": "a400eaede62557af86bed6c5252a101aa1efd596698bb10c9400334fcc2847ec",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.22": "23e0770034e31aaf47b0c84156b2e5ec7638ca0edc76a4cccb8bdc94bfd16159",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.22": "db3ac49b78b3ac57c0e6e9a0ea61237a235447338594ad8e398e8074448bd071",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.22": "c153ac78c571dbbd9bab54c954b93b496645efbd4d3a0689b03e04d0de17c30f",
|
||||||
|
"i686-pc-windows-msvc-0.9.22": "f08889e9567feb1e802c9e588de60efef5a436630e4c211fbf4a2116928f69ab",
|
||||||
|
"i686-unknown-linux-gnu-0.9.22": "841e534a28285dcadfea2ca0f848a9669df287990f93d64c6bf87a9794c98ec9",
|
||||||
|
"i686-unknown-linux-musl-0.9.22": "b2c5322e188980afd4bc1afb19f4e8dee7000ad0e17ca754e97dab21c1d4d1f5",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.22": "309c4a48d7f65cdf47aa7e1c5e02502556e04f486d46e9591f5b4196c92730a3",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.22": "1e829630f8317cf3e9818c3ad1f9927fdc9d087cd38abb05f9587c19872a8560",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.22": "d3036e36b330ad6caab68fa31c12c21f80c9b8cc7822416343a5100f09d6b640",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.22": "aff367a5c6ffb87b9cebbda4372464ca6aff69a53c81a94f1d78541be9677b2d",
|
||||||
|
"x86_64-apple-darwin-0.9.22": "c0057ad78b475f343739b1bbe223361c1054524c9edf310ee1dc85a050207f86",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.22": "93a0a244f26eec208d8ea8077e3de743d9687ad76c190342722f1f57fa629457",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.22": "e170aed70ac0225feee612e855d3a57ae73c61ffb22c7e52c3fd33b87c286508",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.22": "84d087a8e77a223d80578919894f3103f46ca7c263250c3e0478ce7c38850349",
|
||||||
|
"aarch64-apple-darwin-0.9.21": "473977236ef8ac5937c80de08a3599cb6ed6021d0e015e10f88076767877a153",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.21": "54f66a44108b1b68583c9da0a515195d011189874ec9547710c032801726e042",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.21": "416984484783a357170c43f98e7d2d203f1fb595d6b3b95131513c53e50986ef",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.21": "03a49fb609888032dbc3be9fd114b50fc9bce8b73b3df319746ae08d1fbdea83",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.21": "5d84273d9e79aa1262e11d50b4b4e61c7b33bbbf47c7f7e271cb07f89ac479c1",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.21": "74b2a73b3569cbba8c73470eb45dfba393401c834dd432fc8bd2039b40b1dde6",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.21": "fa3806603be42aad687bb97ff5939a32f5e1c21d565155299410ad445669ce11",
|
||||||
|
"i686-pc-windows-msvc-0.9.21": "941e2b656cf9c94eac4b751933b24e5820247d938958c3d62d9d95d0e2409956",
|
||||||
|
"i686-unknown-linux-gnu-0.9.21": "73fbd705cb4b5c071318afee896ba9984e3a14fcf7842435a93c43dc9ca0a12c",
|
||||||
|
"i686-unknown-linux-musl-0.9.21": "c38f823354fff387758f6288ad184b104f47520b3cee7d53e92f3666b3466f55",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.21": "2cf68ea2ff75c4a627101bfe22064d6646a03cd7ddb939c933f3d8127b8d5982",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.21": "3ede0329f67f5db37914b5dfd6014c414d27e1bf0153dab8d5cc2e066da034dc",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.21": "3b7b070afd9c7be5a6364f081081cf9fec2160b53eba46cad27304b8b158e4ab",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.21": "34bd75d67a5819c9f796a78b1ec9ebd48021d87d2391b4cf282249c4d026f145",
|
||||||
|
"x86_64-apple-darwin-0.9.21": "26390da48bd55e21ab62451a80ad240ef6df10d4c48ec199cbb34c18b4288983",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.21": "d27952e73183ef8f6ee8c2a50cf8b3f2e08e01b6a9279a00a85cb261ea8d8337",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.21": "0a1ab27383c28ef1c041f85cbbc609d8e3752dfb4b238d2ad97b208a52232baf",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.21": "7abc29b3a06a99fb23564400fe884f5798a1786dc2ca05b6e0f70c53de748ab2",
|
||||||
|
"aarch64-apple-darwin-0.9.20": "c3f4b03a5d526119d41fa8b8f255aa8053c49d787778df654895e3d174b1519a",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.20": "ddba8b1ca82df9b49745c93855c670490d776027269cf7de404d951919c96ea7",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.20": "0451ecac1d0ed43d5870927df84c3d1dc93d72cf1933310acfadce5ad457c587",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.20": "d1b645d63c70da3f6f2368ea4dbc9dd5534b54be74ae32dee8941531c6874b6d",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.20": "ddbaab7f1413f181bafc96c8b18af8e69372373798d2294d03d3935fd829c939",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.20": "e1b2f5e4298878e6ac1137f744ba38b59ce68abd6a43878e66a1cac4dd7efd0e",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.20": "afc4a709ad83773bafa4ba83afa44bb101e44b817c5ad620cb9c54b62fe52e4e",
|
||||||
|
"i686-pc-windows-msvc-0.9.20": "d7e50a3bc433bbb08e7890206bec0623627e6a911a6c10322c98721bde1a9cb0",
|
||||||
|
"i686-unknown-linux-gnu-0.9.20": "aec778b1c44607416102139b6bb6a7f53a313fce8ad1033049b10ac90ed3c597",
|
||||||
|
"i686-unknown-linux-musl-0.9.20": "92dd40f272b65f8301f0f9559fe55ac99b340caba93fe1952172e3485494cbba",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.20": "c2abda00a2b53cde9b6c8380ef9773749d341039771d7447df5647d935eb54c6",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.20": "f40409d551a30081ada78cca7a1a260c02a7d16c912d73988d8e212324dea758",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.20": "6dda223f877ff3eb3eba2fcf14abfd36280e5db1c0480addf5da5273ece087d6",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.20": "8ca14c1a9fe47ad2293a321f061c7278b32d7bc200d2692662790ab6ccd395c1",
|
||||||
|
"x86_64-apple-darwin-0.9.20": "0059dc2986e7032c12b7039e1a66e570ab5c3a41598263c76e5a9c4e7da9f971",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.20": "be51ed9fcba5be4ac9c41a46aaf8af5cef86624fe27e2c645771b174069e049d",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.20": "01ac5d872ab4cf6b11965c9df317f699882405f0319872fe3dbbb3adb045600b",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.20": "0de686dcc02e0b045980779e7330f2deb98e6cd9ece40d3341bd45c6733e682d",
|
||||||
|
"aarch64-apple-darwin-0.9.18": "dc3bee4abbb3bac267a3985a23ea7617d19d41ff381dbaf560ba415ad65af68f",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.18": "fadb43ba13091f44e1786fc3967e65c7786d86192aa205d718307c649927cfc2",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.18": "f8e23ec786b18660ade6b033b6191b7e9c283c872eeb8c4531d56a873decf160",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.18": "b710ceb9889276cbd7ce04e2ca06b5bd3e288da465bd38f7dd17955c4e703a65",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.18": "2219049d28baaa0764e0315996e26c70ef548a0ba59add7f42358575ab04b410",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.18": "dddf55144884f5d83b9f5795f0b16d023abedf615505962a6ebcaaef2cb62815",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.18": "265d49a8976a5956d3cab524e85e86df5397ab0daf6bd77f1494b0b9e1c00b9a",
|
||||||
|
"i686-pc-windows-msvc-0.9.18": "52bd6fedef821a2412de73c31fdcf41c31b0a5c5886a416c3ba1a3d282ff02b8",
|
||||||
|
"i686-unknown-linux-gnu-0.9.18": "6cc0437382adddd0439c874c41625539523725d551da9f9aecf7c0a3e86a1c77",
|
||||||
|
"i686-unknown-linux-musl-0.9.18": "a727b054337ce453e98b80d6eccaa913cf542c155f3252503aff3e613735c640",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.18": "522154f752a90513cedcc621071893e46fb05d025ce8f0d4523514e8a87417d7",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.18": "0660534d548800b17d2fc1dcdaf0f284e48ca3e34fff2b8b5c1797610e18fc0e",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.18": "db6f5cbbc56a7212e61445a8cd1fcf880dc2906b4cac8f945320f0ab8eb9bf75",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.18": "bfa789548a345189b70d9069d9d7ef8f9c2236f0d10e2ae47a13549ffded5b84",
|
||||||
|
"x86_64-apple-darwin-0.9.18": "f86836c637333c65bbc7902acc9c49888eef9fbd15dccbc1946b10e30b041073",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.18": "28cbe5d30907a774bfe27a517a39b494ec6f7d3816bda8bbf6f9645490449182",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.18": "c2def3db178ade63933fa15ffc96e882c196ce53e06173dcee05b36c5f6f68f5",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.18": "a55ae2d0d53c8f6541bb4d6afc95857ff33a97de8f1d23e9d09acdcb865c4a00",
|
||||||
|
"aarch64-apple-darwin-0.9.17": "a1e1464aa1d04d5e5fa700aa2f2e10397d1114e835dbd56be25ba65c9a31bd99",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.17": "28423a27ad1d82347c00411a6792567119b3c1cfe775d3312c0e08a6b489be5b",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.17": "e9eba97b7169e47fd3c926e409f0b714820f0befc23b3ae062780586a793e4cc",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.17": "f6f48a301f8e855765af42ef50257af0cebc9c5439dfdcbc188142941aea45ca",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.17": "4d80f3509b6351882a64c1dd08f72a80e2b27f055a996295ef1f935bc3efcdde",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.17": "30a6c041429e2176062573f33c5c44307cb756264224bcb005723a6e18cff34c",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.17": "6b034dc63735c2a4541430cbece688e28bce51a09e2ad1ea2c1646a6b24cf1c3",
|
||||||
|
"i686-pc-windows-msvc-0.9.17": "6e93737710e31bf73fcc3b4b6da616bd341e9c6baf1162ddc1e7f65884063f50",
|
||||||
|
"i686-unknown-linux-gnu-0.9.17": "d2426a6d10bedd83524599bb0fbe0ba22e681ed45e892b4fd29086b424daf02a",
|
||||||
|
"i686-unknown-linux-musl-0.9.17": "988c7702a2e88092b30f16fb7f8c18284a8062044cf57e6abd1dfeae82aa6377",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.17": "5ad301d9fa15e0791ef96abd83f0ed97e7ac1191b4b7578caaad3151633fb17c",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.17": "4958185c5febf22f1c4c84944334cb0d9262c2c2c93faf30c1e0abd26f9d94fa",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.17": "feed7cc7b5fc8a99e683ee1761cf99e3da12b60a2a413b7b87a0447726a66369",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.17": "a297518913a0f0e4af1bce434440ca9d415728aaf828c7def0e913aa5c46da8f",
|
||||||
|
"x86_64-apple-darwin-0.9.17": "249e7fb18d45c06ba283c48f0a8e586ecc5fbb9e8dad0923c4169a7c4db815b2",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.17": "ebc76197bf3e1a58f9dac6f70f49b0ebd3e6907ab35289ce228bce5ba8a3f201",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.17": "0114d54f9aafd07516cf1cadfe72afa970f5fd293fbe82dd924b8a7b42c984d8",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.17": "ab616c1851e7b1ed377a9ff3997dcee184bea7eda0b20bc8607abba6c469cbad",
|
||||||
|
"aarch64-apple-darwin-0.9.16": "db6d7fb299c35dc9bbbeb89cfa9aa55a9584f637d370c0a4c62a50df9c9294a7",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.16": "591c73f47dfec72f9d242eebcb36197f27ad652a59d70e70db5c52018684d78e",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.16": "a8e9e3f7e621e212d9663ea28827bd8fb9ec11c453ae88d520b48e969e9ff5db",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.16": "cb6730e083f17b38aea88c2bdfc3d4c834a832444087d30d7914bd460ae15b79",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.16": "4c2447ff0aad62934605252eaf6372efb82fb38330b88785e162929491870186",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.16": "5a09476442563f6ee32d864d89a87490bf5a850c987898c648ef57608c5899cb",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.16": "180846487d6baa1ca9d4cd90a0aaf38f7466d3c211c219bd4d7ffbbbc5077ef2",
|
||||||
|
"i686-pc-windows-msvc-0.9.16": "f6921ace765a2905c0cda8bf8185ecd60d83060da4b2904a28b5a8c23ffc7aa2",
|
||||||
|
"i686-unknown-linux-gnu-0.9.16": "1cdb9a2086a5d1ea37e219c45407730ef3e7711737b71fae49d1396918f4cdba",
|
||||||
|
"i686-unknown-linux-musl-0.9.16": "f8b0159c52bc43cbe598c52dd43ca911c22c6b9da992f3604434b23d21ac5ff6",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.16": "40c39d344c92c6a877fdfe89db8a5f84990dbb7097e529122bd7d90d1975eb90",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.16": "982167ebae22efbda212ccbacc582b00486150695d83fca94d39c3422a0f8865",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.16": "b94ef3afa9bc94288e069162143ec20ed1d103d7631a17ca14c6ac28e8825baa",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.16": "cd32014282b2d2de53eb0176004dffddec77f0afbe76713f57c245e08cdf2b21",
|
||||||
|
"x86_64-apple-darwin-0.9.16": "e1ba1992e163f8b9d54d1cd1501002f019f4b729dec2a197e79a56d354ec2773",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.16": "e498a1d5983da7727af96b63ddfcd52ee883173552664ad0b629b3d4c7a46e91",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.16": "3adbf5322471b53a61483b4a5d091e70c32231ebc63fd327fae7b844cbcd3e01",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.16": "35a26bea6aad2c8eb468cdf69baccc7ab79b3d0971a76a6741a687535a2acfad",
|
||||||
|
"aarch64-apple-darwin-0.9.15": "388029510fdf64771745e9fb85cd6ec042580678a9e61c90fe355301f1c42f1e",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.15": "19422893deba37feb4b4191b43be89525ac48bd378f9fdbf2d5bca44319f8c19",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.15": "d89430e201f629b203975c605cd6bfe85afc2bc0781d95838e2b5177a03b1545",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.15": "41f6ef4f86e9f8015bc31e9ca4fd44a6e2c80fc0b75d6eb74063f64ca15177c7",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.15": "c85740e8c22187f82e3dad042d412991076d5701c7e1a4eba9ae1166f08f769b",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.15": "d30d648e4c1c76110ee78953b43ecb8c356cda438a071a60c97308f9a7d2cf27",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.15": "a1fa385da85131e071f9a6cbde89456945ea821609624e80f9b4d8877b8fbcdb",
|
||||||
|
"i686-pc-windows-msvc-0.9.15": "7dabeb4719dedc1f690e4d5e9641d92c6b17e04245015d64511d207dbb1792d8",
|
||||||
|
"i686-unknown-linux-gnu-0.9.15": "806e2e49c539a030336c83cc8dd9fe6250a70b1f8fb15ecb165837ff330f4ee8",
|
||||||
|
"i686-unknown-linux-musl-0.9.15": "7ab63f3549f3fc61bab32f9526a6a3ba750dedb7f609a345a4205e41fcd91e92",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.15": "b5b72a9053e4ad1c5baa68c3c8ae728567d8d9847f8cc852e0c6fabea9307647",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.15": "880b977489a0a580df04cf9020968bf05553bccd8dd48375a0c7cb6dd8048f58",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.15": "cb993da480f90b226bca66a1f54c4a0419a245d07d3d0e30a3f8c9a5b1f8fd2a",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.15": "e0cac629299a49336e92a13684671bbf50933749412f480e051a4071a619fcd8",
|
||||||
|
"x86_64-apple-darwin-0.9.15": "a7d9ae35ce2d192cb0356f07439cfc6768d4dff8e95ae69f821e8fbe7bcb0e09",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.15": "a6887c93a54c46de7dcc0bc798f84a130d7f411124ad43252716f75d0c2c33e0",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.15": "2053df0089327569cddd6afea920c2285b482d9b123f5db9f658273e96ab792c",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.15": "7037889adb182ce50379b3a789154ad6be00397b892fec9e93e11c457945aec0",
|
||||||
|
"aarch64-apple-darwin-0.9.14": "5267ecb62737b2ec0d61fd40e93c20d0a201eba96588582633f725792c778e00",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.14": "966f4ddb5450ade2be0989bb3d4cc4ff66ec316ad714618f2391712ec3660908",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.14": "b19bac23c34490b46f024636f164889b14403ab262118e2f97224053fc17ed8c",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.14": "631ac3b88a77ec1af35297fdecc0b60b3eef16482617e3a2a5805bd667166437",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.14": "a5e112d7ec880c2fe9bb95500d3e6f148e68ca7ff2dd88ab0f8d966e14ef3c9d",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.14": "09449988d71401c37e8a7db2eb381e4a931c6394b7c1c9db7e444c2948f16677",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.14": "b7273fc488ac5ae624ab5f657410d44443f30643b77b0ac0d1fdec0f7dee7b95",
|
||||||
|
"i686-pc-windows-msvc-0.9.14": "b361e46aa3d9fa94850fbf006deff3c23f1aa1392ec78da598b5e3af0349ae23",
|
||||||
|
"i686-unknown-linux-gnu-0.9.14": "106d70d5a9034d06ad1c2c6b028e6b0b77816f5de34d42f4e5c88fd5d5a0a8b0",
|
||||||
|
"i686-unknown-linux-musl-0.9.14": "2b9685ea197030fbcd327f5a96012c0d8a468db35c36e84b683b944b696d853a",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.14": "1cdb82fa8fc213149dd34bed755ba2ec8faef9d45a4206799256b2926c1495d9",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.14": "9ae475bb30150d12633283dd73707fc059bece75e2c42288bf35212b5e6f09ec",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.14": "96abad8a9324bd756905ab705ef853e036b3725242161682e7ceab2bf4081186",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.14": "f5250473bd8a036b78f4ec19450eb3efe743232d688f770ea2a92f21da7fb417",
|
||||||
|
"x86_64-apple-darwin-0.9.14": "276fe2605a0ba8306a875101e3a11bc5b93e2bce0b6b3b6c49c9ad14507d9dba",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.14": "7ca7a43da656d9c5fd4b40ce6e8de19bc46d51e026c9dfd4909c1bc8b25f88bc",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.14": "e72024e390fed178072e0c9b262c052d89ccff32a5522504f4991d6265aff411",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.14": "2b9636963c700a595d476e387eb8041973d30c5add3193a8710a4306442ee74b",
|
||||||
|
"aarch64-apple-darwin-0.9.13": "9c594dce1c237e11680be2b6d1331448eeb6f8a1453fb851a66a40291bb624de",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.13": "761e29d5a67ca61f1d19c20ce935a9fd1f0011efb0e00f1efb20b0801e06b3c4",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.13": "c221d04810f873a7aa8bae9aa6ed721e600e56534980df1363952386a4fcdcc5",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.13": "5a81540af68e28df324d01d79900e7b86c659e8167cb236528b8e6050d74f94e",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.13": "35043814a4eff41141943834e70faa8de54a4a9f6635e0993382ac2ee06651bf",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.13": "a6c99ae8fdd21e58b8908ecf4f521d2045e297572d899fdd6b59e14d1095600c",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.13": "8a7655f116f90380a9b9e5a11cf8dc37c5a898b01087d48a801a59165eb2e42c",
|
||||||
|
"i686-pc-windows-msvc-0.9.13": "be134c7576ba494db286a2ccc2ada117b4709e67090264d81891221ea366f2ef",
|
||||||
|
"i686-unknown-linux-gnu-0.9.13": "b0884051fdf28461db2f1d4f0968cfcc4ad51539195638beb2656cba863a9895",
|
||||||
|
"i686-unknown-linux-musl-0.9.13": "839215a614165993ee4daecb25857f17d81640ca88bb2874129a92451ac109f3",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.13": "735fd044e22dbcda6d174d9dc7f007a2782610509be4bc9c0bdec18eb0f76684",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.13": "bac44db58d9e4fc9f1ebc6c03d4ef73d10ae871569a19099d348803e1b09a763",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.13": "189ce36262a01fc411e85dc6d2cb8dc262b9ba2ce5bc1e6f3ba2bb284a190b95",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.13": "037fc4a382a2d591429a35078cce5ff44170e2d14fa5fa4625902f36b8aa892a",
|
||||||
|
"x86_64-apple-darwin-0.9.13": "571cb1623681c439af892335c729c272266e836a9ebcb627f34f8012c6459d9d",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.13": "cdfb04512c9184939f16eea02644a7133b4e41233ead69122d49847d29a45538",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.13": "c45a44144bf23a2182e143227b4ad0bbe41a2bb7161a637c02e968906af53fd1",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.13": "04cf326d2d742ce5c8890fdc0b9f71bd707be8640979bf6e53ddd52da74dfb41",
|
||||||
|
"aarch64-apple-darwin-0.9.12": "6bf1148aa48bc42853e8216982a89f6909e1932a51f4d8dce27815e8954e4664",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.12": "0975aff9837edcd97f2f781ff78754929ee13386708b76a5f223ed41b5741fec",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.12": "3c4dd18c1db6bd1af3b84ea3b3cc34dd9d8b955d3e700d1e1e4a18249decbe69",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.12": "e953307caacdcf8a5bbac510423b2e64840428244a542ae2d7a6ca79c2931c24",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.12": "3f8ede818c4a7d8f7f3069eb4034dcdea85342d7b952b269cf17bd2854a9e028",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.12": "2f06cb797ba7c4f5f1774331d4e15f912b1e8035e49c9ad5f510378fd2d129dc",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.12": "d72ecd42c3657c1e6ca76adc0d98c0576751da8e115cbfbb2cbd36be3f8c8638",
|
||||||
|
"i686-pc-windows-msvc-0.9.12": "e140404f281a6427faac4d4d0fab467f3e305ae6ba6ecfab0d149ad6815a2c04",
|
||||||
|
"i686-unknown-linux-gnu-0.9.12": "a56311ec3dfa0fa0760e763dcd0879f5a5c21aa5342b9290d2650b014fec49c8",
|
||||||
|
"i686-unknown-linux-musl-0.9.12": "1ac8ad42c48eebdc0d62ae78707d4ca2727d0c88ec00fbdd07d0655f023e2ab9",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.12": "89f4a9122dfd30dd51db572513e5db4a05e29abe752405d751b92fe6f30990e2",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.12": "2941ffdf84340c8416cec8beb15c35b92afb1185a08cae05b8637c26225473d5",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.12": "0f95884ded94f98d3b8a1f2f9f78f6da4eea5e20f718185a0da4778ab0798e9b",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.12": "a73662924261b0c581b762040c27fb839aca9164b13e017ca5162ae3dbb51c50",
|
||||||
|
"x86_64-apple-darwin-0.9.12": "b91852ea80e1c137f6246c8b01bc52d1c7213bff8d82cccd532ce2272c56d482",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.12": "ee09ed595c54ee70fb29b596c9a15aa71f5d7a1191417985a0684a1dd644a8da",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.12": "4e43dac0c82b12b66564d91d5649350377b771d1df84374d9be1b9e6c8dd8152",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.12": "3621344419cedb7625f0c07c54e876d0a6bb5576b39879b118ed96a6d104fd11",
|
||||||
|
"aarch64-apple-darwin-0.9.11": "594d9f4cfbd21d5a2f34b0352bf423066a9dab1733c90b5d40e3e227506deb03",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.11": "04964328f8e8a4e868153f65a29a927c5d3d8f16c343686bbab5147c72858903",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.11": "b695e1796449ea85f967b749f87283678ce284e2c042b4b6fa51fa36ec06f47c",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.11": "26b33bb65714247dd865216e71c5528030c85c6de9ce06172152158ed7add70c",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.11": "6b64be48c461ec1b25d8695d407d6189c660ca2f25ab5978476ae2cff516ce32",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.11": "2212adfff866e062dcea7d1ef99935043a49e3d77a18c9258851b7d23c5c3f90",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.11": "73729ebd29e2895f30c1a600adac56748b1afe18e9398e86ac4a293941fee3f7",
|
||||||
|
"i686-pc-windows-msvc-0.9.11": "d7a6e1d8f3d6bc2eea36311fe1b30ee44e8aac5de54189bbf17849a212a388a0",
|
||||||
|
"i686-unknown-linux-gnu-0.9.11": "19189d007a820ed37b08a54cc46efd2b697ed266e71bac6f38abf44e319a5067",
|
||||||
|
"i686-unknown-linux-musl-0.9.11": "d517ec84358c3ed55757bf8e28eba40072b7912626d96ef0df29fd115f875ad1",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.11": "a30437a5ccbbcedcdd2e70e81404cfcf7a6b4f34d1a440c61e7df96702165869",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.11": "6340562f7aff862c6b15c55520ca81823fe446e595f96f4732ddf37544977a5d",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.11": "89ac4d89928dded2e1f300f5f6b184b9f370493c2e506ca272d77e39c6a1b68f",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.11": "665208d604a63d8e934bd4f748e689283f507b20a083f6c027146d92eb3048c0",
|
||||||
|
"x86_64-apple-darwin-0.9.11": "14236594b4edbd90929d845766a41a1d4e51d530c9ebbedfb3d93688661f142c",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.11": "45a3ff2a68c246ed9fd2d9df032496c1beebe480357f356ac25d2cb144884c30",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.11": "817c0722b437b4b45b9a7e0231616a09db76bab1b8d178ba7a9680c690db19f0",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.11": "5cc06fe71374a8883aeb2c83a141a4b5fac8584ee894ba31c5792254508b4e9a",
|
||||||
"aarch64-apple-darwin-0.9.10": "af171d5a4eb1c502819de32740aa811ff71851b1f5ec2d8bd0dda302ed9554c2",
|
"aarch64-apple-darwin-0.9.10": "af171d5a4eb1c502819de32740aa811ff71851b1f5ec2d8bd0dda302ed9554c2",
|
||||||
"aarch64-pc-windows-msvc-0.9.10": "6cca85b629d2944f839651e01070dc3de03d238c75a310f28914fcd63ddb9aa6",
|
"aarch64-pc-windows-msvc-0.9.10": "6cca85b629d2944f839651e01070dc3de03d238c75a310f28914fcd63ddb9aa6",
|
||||||
"aarch64-unknown-linux-gnu-0.9.10": "39d80f85f604018281b3e7bf2e1515ab96e8eec5763a2cef9f87d821f66d1758",
|
"aarch64-unknown-linux-gnu-0.9.10": "39d80f85f604018281b3e7bf2e1515ab96e8eec5763a2cef9f87d821f66d1758",
|
||||||
@@ -95631,7 +95884,6 @@ const tc = __importStar(__nccwpck_require__(3472));
|
|||||||
const pep440 = __importStar(__nccwpck_require__(3297));
|
const pep440 = __importStar(__nccwpck_require__(3297));
|
||||||
const semver = __importStar(__nccwpck_require__(9318));
|
const semver = __importStar(__nccwpck_require__(9318));
|
||||||
const constants_1 = __nccwpck_require__(6156);
|
const constants_1 = __nccwpck_require__(6156);
|
||||||
const octokit_1 = __nccwpck_require__(971);
|
|
||||||
const checksum_1 = __nccwpck_require__(7772);
|
const checksum_1 = __nccwpck_require__(7772);
|
||||||
const version_manifest_1 = __nccwpck_require__(4000);
|
const version_manifest_1 = __nccwpck_require__(4000);
|
||||||
function tryGetFromToolCache(arch, version) {
|
function tryGetFromToolCache(arch, version) {
|
||||||
@@ -95652,12 +95904,24 @@ async function downloadVersionFromGithub(platform, arch, version, checkSum, gith
|
|||||||
return await downloadVersion(downloadUrl, artifact, platform, arch, version, checkSum, githubToken);
|
return await downloadVersion(downloadUrl, artifact, platform, arch, version, checkSum, githubToken);
|
||||||
}
|
}
|
||||||
async function downloadVersionFromManifest(manifestUrl, platform, arch, version, checkSum, githubToken) {
|
async function downloadVersionFromManifest(manifestUrl, platform, arch, version, checkSum, githubToken) {
|
||||||
const downloadUrl = await (0, version_manifest_1.getDownloadUrl)(manifestUrl, version, arch, platform);
|
// If no user-provided manifest, try remote manifest first (will use cache if already fetched)
|
||||||
if (!downloadUrl) {
|
// then fall back to bundled manifest
|
||||||
core.info(`manifest-file does not contain version ${version}, arch ${arch}, platform ${platform}. Falling back to GitHub releases.`);
|
const manifestSources = manifestUrl !== undefined
|
||||||
return await downloadVersionFromGithub(platform, arch, version, checkSum, githubToken);
|
? [manifestUrl]
|
||||||
}
|
: [version_manifest_1.REMOTE_MANIFEST_URL, undefined];
|
||||||
|
for (const source of manifestSources) {
|
||||||
|
try {
|
||||||
|
const downloadUrl = await (0, version_manifest_1.getDownloadUrl)(source, version, arch, platform);
|
||||||
|
if (downloadUrl) {
|
||||||
return await downloadVersion(downloadUrl, `uv-${arch}-${platform}`, platform, arch, version, checkSum, githubToken);
|
return await downloadVersion(downloadUrl, `uv-${arch}-${platform}`, platform, arch, version, checkSum, githubToken);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
core.debug(`Failed to get download URL from manifest ${source}: ${err}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
core.info(`Manifest does not contain version ${version}, arch ${arch}, platform ${platform}. Falling back to GitHub releases.`);
|
||||||
|
return await downloadVersionFromGithub(platform, arch, version, checkSum, githubToken);
|
||||||
}
|
}
|
||||||
async function downloadVersion(downloadUrl, artifactName, platform, arch, version, checkSum, githubToken) {
|
async function downloadVersion(downloadUrl, artifactName, platform, arch, version, checkSum, githubToken) {
|
||||||
core.info(`Downloading uv from "${downloadUrl}" ...`);
|
core.info(`Downloading uv from "${downloadUrl}" ...`);
|
||||||
@@ -95689,7 +95953,7 @@ async function downloadVersion(downloadUrl, artifactName, platform, arch, versio
|
|||||||
function getExtension(platform) {
|
function getExtension(platform) {
|
||||||
return platform === "pc-windows-msvc" ? ".zip" : ".tar.gz";
|
return platform === "pc-windows-msvc" ? ".zip" : ".tar.gz";
|
||||||
}
|
}
|
||||||
async function resolveVersion(versionInput, manifestFile, githubToken, resolutionStrategy = "highest") {
|
async function resolveVersion(versionInput, manifestFile, resolutionStrategy = "highest") {
|
||||||
core.debug(`Resolving version: ${versionInput}`);
|
core.debug(`Resolving version: ${versionInput}`);
|
||||||
let version;
|
let version;
|
||||||
const isSimpleMinimumVersionSpecifier = versionInput.includes(">") && !versionInput.includes(",");
|
const isSimpleMinimumVersionSpecifier = versionInput.includes(">") && !versionInput.includes(",");
|
||||||
@@ -95706,7 +95970,7 @@ async function resolveVersion(versionInput, manifestFile, githubToken, resolutio
|
|||||||
else {
|
else {
|
||||||
version =
|
version =
|
||||||
versionInput === "latest" || resolveVersionSpecifierToLatest
|
versionInput === "latest" || resolveVersionSpecifierToLatest
|
||||||
? await getLatestVersion(githubToken)
|
? await getLatestVersion()
|
||||||
: versionInput;
|
: versionInput;
|
||||||
}
|
}
|
||||||
if (tc.isExplicitVersion(version)) {
|
if (tc.isExplicitVersion(version)) {
|
||||||
@@ -95718,7 +95982,7 @@ async function resolveVersion(versionInput, manifestFile, githubToken, resolutio
|
|||||||
}
|
}
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
const availableVersions = await getAvailableVersions(githubToken);
|
const availableVersions = await getAvailableVersions();
|
||||||
core.debug(`Available versions: ${availableVersions}`);
|
core.debug(`Available versions: ${availableVersions}`);
|
||||||
const resolvedVersion = resolutionStrategy === "lowest"
|
const resolvedVersion = resolutionStrategy === "lowest"
|
||||||
? minSatisfying(availableVersions, version)
|
? minSatisfying(availableVersions, version)
|
||||||
@@ -95728,66 +95992,35 @@ async function resolveVersion(versionInput, manifestFile, githubToken, resolutio
|
|||||||
}
|
}
|
||||||
return resolvedVersion;
|
return resolvedVersion;
|
||||||
}
|
}
|
||||||
async function getAvailableVersions(githubToken) {
|
async function getAvailableVersions() {
|
||||||
core.info("Getting available versions from GitHub API...");
|
// 1. Try remote manifest first (no rate limits, always current)
|
||||||
try {
|
try {
|
||||||
const octokit = new octokit_1.Octokit({
|
core.info("Getting available versions from remote manifest...");
|
||||||
auth: githubToken,
|
const versions = await (0, version_manifest_1.getAvailableVersionsFromManifest)(version_manifest_1.REMOTE_MANIFEST_URL);
|
||||||
});
|
core.debug(`Found ${versions.length} versions from remote manifest`);
|
||||||
return await getReleaseTagNames(octokit);
|
return versions;
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
if (err.message.includes("Bad credentials")) {
|
core.debug(`Remote manifest lookup failed: ${err}`);
|
||||||
core.info("No (valid) GitHub token provided. Falling back to anonymous. Requests might be rate limited.");
|
|
||||||
const octokit = new octokit_1.Octokit();
|
|
||||||
return await getReleaseTagNames(octokit);
|
|
||||||
}
|
|
||||||
throw err;
|
|
||||||
}
|
}
|
||||||
|
// 2. Fall back to bundled manifest (no network, may be stale)
|
||||||
|
core.info("Getting available versions from bundled manifest...");
|
||||||
|
return await (0, version_manifest_1.getAvailableVersionsFromManifest)(undefined);
|
||||||
}
|
}
|
||||||
async function getReleaseTagNames(octokit) {
|
async function getLatestVersion() {
|
||||||
const response = await octokit.paginate(octokit.rest.repos.listReleases, {
|
// 1. Try remote manifest first (no rate limits, always current)
|
||||||
owner: constants_1.OWNER,
|
|
||||||
repo: constants_1.REPO,
|
|
||||||
});
|
|
||||||
const releaseTagNames = response.map((release) => release.tag_name);
|
|
||||||
if (releaseTagNames.length === 0) {
|
|
||||||
throw Error("Github API request failed while getting releases. Check the GitHub status page for outages. Try again later.");
|
|
||||||
}
|
|
||||||
return releaseTagNames;
|
|
||||||
}
|
|
||||||
async function getLatestVersion(githubToken) {
|
|
||||||
core.info("Getting latest version from GitHub API...");
|
|
||||||
const octokit = new octokit_1.Octokit({
|
|
||||||
auth: githubToken,
|
|
||||||
});
|
|
||||||
let latestRelease;
|
|
||||||
try {
|
try {
|
||||||
latestRelease = await getLatestRelease(octokit);
|
core.info("Getting latest version from remote manifest...");
|
||||||
|
const version = await (0, version_manifest_1.getLatestKnownVersion)(version_manifest_1.REMOTE_MANIFEST_URL);
|
||||||
|
core.debug(`Latest version from remote manifest: ${version}`);
|
||||||
|
return version;
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
if (err.message.includes("Bad credentials")) {
|
core.debug(`Remote manifest lookup failed: ${err}`);
|
||||||
core.info("No (valid) GitHub token provided. Falling back to anonymous. Requests might be rate limited.");
|
|
||||||
const octokit = new octokit_1.Octokit();
|
|
||||||
latestRelease = await getLatestRelease(octokit);
|
|
||||||
}
|
}
|
||||||
else {
|
// 2. Fall back to bundled manifest (no network, may be stale)
|
||||||
core.error("Github API request failed while getting latest release. Check the GitHub status page for outages. Try again later.");
|
core.info("Getting latest version from bundled manifest...");
|
||||||
throw err;
|
return await (0, version_manifest_1.getLatestKnownVersion)(undefined);
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!latestRelease) {
|
|
||||||
throw new Error("Could not determine latest release.");
|
|
||||||
}
|
|
||||||
core.debug(`Latest version: ${latestRelease.tag_name}`);
|
|
||||||
return latestRelease.tag_name;
|
|
||||||
}
|
|
||||||
async function getLatestRelease(octokit) {
|
|
||||||
const { data: latestRelease } = await octokit.rest.repos.getLatestRelease({
|
|
||||||
owner: constants_1.OWNER,
|
|
||||||
repo: constants_1.REPO,
|
|
||||||
});
|
|
||||||
return latestRelease;
|
|
||||||
}
|
}
|
||||||
function maxSatisfying(versions, version) {
|
function maxSatisfying(versions, version) {
|
||||||
const maxSemver = tc.evaluateVersions(versions, version);
|
const maxSemver = tc.evaluateVersions(versions, version);
|
||||||
@@ -95860,8 +96093,10 @@ var __importStar = (this && this.__importStar) || (function () {
|
|||||||
};
|
};
|
||||||
})();
|
})();
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
|
exports.REMOTE_MANIFEST_URL = void 0;
|
||||||
exports.getLatestKnownVersion = getLatestKnownVersion;
|
exports.getLatestKnownVersion = getLatestKnownVersion;
|
||||||
exports.getDownloadUrl = getDownloadUrl;
|
exports.getDownloadUrl = getDownloadUrl;
|
||||||
|
exports.getAvailableVersionsFromManifest = getAvailableVersionsFromManifest;
|
||||||
exports.updateVersionManifest = updateVersionManifest;
|
exports.updateVersionManifest = updateVersionManifest;
|
||||||
const node_fs_1 = __nccwpck_require__(3024);
|
const node_fs_1 = __nccwpck_require__(3024);
|
||||||
const node_path_1 = __nccwpck_require__(6760);
|
const node_path_1 = __nccwpck_require__(6760);
|
||||||
@@ -95869,6 +96104,9 @@ const core = __importStar(__nccwpck_require__(7484));
|
|||||||
const semver = __importStar(__nccwpck_require__(9318));
|
const semver = __importStar(__nccwpck_require__(9318));
|
||||||
const fetch_1 = __nccwpck_require__(3385);
|
const fetch_1 = __nccwpck_require__(3385);
|
||||||
const localManifestFile = (0, node_path_1.join)(__dirname, "..", "..", "version-manifest.json");
|
const localManifestFile = (0, node_path_1.join)(__dirname, "..", "..", "version-manifest.json");
|
||||||
|
exports.REMOTE_MANIFEST_URL = "https://raw.githubusercontent.com/astral-sh/setup-uv/main/version-manifest.json";
|
||||||
|
// Cache for manifest entries to avoid re-fetching
|
||||||
|
const manifestCache = new Map();
|
||||||
async function getLatestKnownVersion(manifestUrl) {
|
async function getLatestKnownVersion(manifestUrl) {
|
||||||
const manifestEntries = await getManifestEntries(manifestUrl);
|
const manifestEntries = await getManifestEntries(manifestUrl);
|
||||||
return manifestEntries.reduce((a, b) => semver.gt(a.version, b.version) ? a : b).version;
|
return manifestEntries.reduce((a, b) => semver.gt(a.version, b.version) ? a : b).version;
|
||||||
@@ -95880,7 +96118,18 @@ async function getDownloadUrl(manifestUrl, version, arch, platform) {
|
|||||||
entry.platform === platform);
|
entry.platform === platform);
|
||||||
return entry ? entry.downloadUrl : undefined;
|
return entry ? entry.downloadUrl : undefined;
|
||||||
}
|
}
|
||||||
|
async function getAvailableVersionsFromManifest(manifestUrl) {
|
||||||
|
const manifestEntries = await getManifestEntries(manifestUrl);
|
||||||
|
return [...new Set(manifestEntries.map((entry) => entry.version))];
|
||||||
|
}
|
||||||
async function getManifestEntries(manifestUrl) {
|
async function getManifestEntries(manifestUrl) {
|
||||||
|
const cacheKey = manifestUrl ?? "local";
|
||||||
|
// Return cached entries if available
|
||||||
|
const cached = manifestCache.get(cacheKey);
|
||||||
|
if (cached !== undefined) {
|
||||||
|
core.debug(`Using cached manifest entries for: ${cacheKey}`);
|
||||||
|
return cached;
|
||||||
|
}
|
||||||
let data;
|
let data;
|
||||||
if (manifestUrl !== undefined) {
|
if (manifestUrl !== undefined) {
|
||||||
core.info(`Fetching manifest-file from: ${manifestUrl}`);
|
core.info(`Fetching manifest-file from: ${manifestUrl}`);
|
||||||
@@ -95895,7 +96144,9 @@ async function getManifestEntries(manifestUrl) {
|
|||||||
const fileContent = await node_fs_1.promises.readFile(localManifestFile);
|
const fileContent = await node_fs_1.promises.readFile(localManifestFile);
|
||||||
data = fileContent.toString();
|
data = fileContent.toString();
|
||||||
}
|
}
|
||||||
return JSON.parse(data);
|
const entries = JSON.parse(data);
|
||||||
|
manifestCache.set(cacheKey, entries);
|
||||||
|
return entries;
|
||||||
}
|
}
|
||||||
async function updateVersionManifest(manifestUrl, downloadUrls) {
|
async function updateVersionManifest(manifestUrl, downloadUrls) {
|
||||||
const manifest = [];
|
const manifest = [];
|
||||||
@@ -96060,11 +96311,38 @@ const core = __importStar(__nccwpck_require__(7484));
|
|||||||
const exec = __importStar(__nccwpck_require__(5236));
|
const exec = __importStar(__nccwpck_require__(5236));
|
||||||
const restore_cache_1 = __nccwpck_require__(5391);
|
const restore_cache_1 = __nccwpck_require__(5391);
|
||||||
const download_version_1 = __nccwpck_require__(8255);
|
const download_version_1 = __nccwpck_require__(8255);
|
||||||
const config_file_1 = __nccwpck_require__(7846);
|
|
||||||
const constants_1 = __nccwpck_require__(6156);
|
const constants_1 = __nccwpck_require__(6156);
|
||||||
const inputs_1 = __nccwpck_require__(9612);
|
const inputs_1 = __nccwpck_require__(9612);
|
||||||
const platforms_1 = __nccwpck_require__(8361);
|
const platforms_1 = __nccwpck_require__(8361);
|
||||||
const resolve_1 = __nccwpck_require__(6772);
|
const resolve_1 = __nccwpck_require__(6772);
|
||||||
|
async function getPythonVersion() {
|
||||||
|
if (inputs_1.pythonVersion !== "") {
|
||||||
|
return inputs_1.pythonVersion;
|
||||||
|
}
|
||||||
|
let output = "";
|
||||||
|
const options = {
|
||||||
|
listeners: {
|
||||||
|
stdout: (data) => {
|
||||||
|
output += data.toString();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
silent: !core.isDebug(),
|
||||||
|
};
|
||||||
|
try {
|
||||||
|
const execArgs = ["python", "find", "--directory", inputs_1.workingDirectory];
|
||||||
|
await exec.exec("uv", execArgs, options);
|
||||||
|
const pythonPath = output.trim();
|
||||||
|
output = "";
|
||||||
|
await exec.exec(pythonPath, ["--version"], options);
|
||||||
|
// output is like "Python 3.8.10"
|
||||||
|
return output.split(" ")[1].trim();
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
const err = error;
|
||||||
|
core.debug(`Failed to get python version from uv. Error: ${err.message}`);
|
||||||
|
return "unknown";
|
||||||
|
}
|
||||||
|
}
|
||||||
async function run() {
|
async function run() {
|
||||||
detectEmptyWorkdir();
|
detectEmptyWorkdir();
|
||||||
const platform = await (0, platforms_1.getPlatform)();
|
const platform = await (0, platforms_1.getPlatform)();
|
||||||
@@ -96088,8 +96366,10 @@ async function run() {
|
|||||||
core.setOutput("uv-version", setupResult.version);
|
core.setOutput("uv-version", setupResult.version);
|
||||||
core.saveState(constants_1.STATE_UV_VERSION, setupResult.version);
|
core.saveState(constants_1.STATE_UV_VERSION, setupResult.version);
|
||||||
core.info(`Successfully installed uv version ${setupResult.version}`);
|
core.info(`Successfully installed uv version ${setupResult.version}`);
|
||||||
|
const pythonVersion = await getPythonVersion();
|
||||||
|
core.setOutput("python-version", pythonVersion);
|
||||||
if (inputs_1.enableCache) {
|
if (inputs_1.enableCache) {
|
||||||
await (0, restore_cache_1.restoreCache)();
|
await (0, restore_cache_1.restoreCache)(pythonVersion);
|
||||||
}
|
}
|
||||||
// https://github.com/nodejs/node/issues/56645#issuecomment-3077594952
|
// https://github.com/nodejs/node/issues/56645#issuecomment-3077594952
|
||||||
await new Promise((resolve) => setTimeout(resolve, 50));
|
await new Promise((resolve) => setTimeout(resolve, 50));
|
||||||
@@ -96127,21 +96407,21 @@ async function setupUv(platform, arch, checkSum, githubToken) {
|
|||||||
}
|
}
|
||||||
async function determineVersion(manifestFile) {
|
async function determineVersion(manifestFile) {
|
||||||
if (inputs_1.version !== "") {
|
if (inputs_1.version !== "") {
|
||||||
return await (0, download_version_1.resolveVersion)(inputs_1.version, manifestFile, inputs_1.githubToken, inputs_1.resolutionStrategy);
|
return await (0, download_version_1.resolveVersion)(inputs_1.version, manifestFile, inputs_1.resolutionStrategy);
|
||||||
}
|
}
|
||||||
if (inputs_1.versionFile !== "") {
|
if (inputs_1.versionFile !== "") {
|
||||||
const versionFromFile = (0, resolve_1.getUvVersionFromFile)(inputs_1.versionFile);
|
const versionFromFile = (0, resolve_1.getUvVersionFromFile)(inputs_1.versionFile);
|
||||||
if (versionFromFile === undefined) {
|
if (versionFromFile === undefined) {
|
||||||
throw new Error(`Could not determine uv version from file: ${inputs_1.versionFile}`);
|
throw new Error(`Could not determine uv version from file: ${inputs_1.versionFile}`);
|
||||||
}
|
}
|
||||||
return await (0, download_version_1.resolveVersion)(versionFromFile, manifestFile, inputs_1.githubToken, inputs_1.resolutionStrategy);
|
return await (0, download_version_1.resolveVersion)(versionFromFile, manifestFile, inputs_1.resolutionStrategy);
|
||||||
}
|
}
|
||||||
const versionFromUvToml = (0, resolve_1.getUvVersionFromFile)(`${inputs_1.workingDirectory}${path.sep}uv.toml`);
|
const versionFromUvToml = (0, resolve_1.getUvVersionFromFile)(`${inputs_1.workingDirectory}${path.sep}uv.toml`);
|
||||||
const versionFromPyproject = (0, resolve_1.getUvVersionFromFile)(`${inputs_1.workingDirectory}${path.sep}pyproject.toml`);
|
const versionFromPyproject = (0, resolve_1.getUvVersionFromFile)(`${inputs_1.workingDirectory}${path.sep}pyproject.toml`);
|
||||||
if (versionFromUvToml === undefined && versionFromPyproject === undefined) {
|
if (versionFromUvToml === undefined && versionFromPyproject === undefined) {
|
||||||
core.info("Could not determine uv version from uv.toml or pyproject.toml. Falling back to latest.");
|
core.info("Could not determine uv version from uv.toml or pyproject.toml. Falling back to latest.");
|
||||||
}
|
}
|
||||||
return await (0, download_version_1.resolveVersion)(versionFromUvToml || versionFromPyproject || "latest", manifestFile, inputs_1.githubToken, inputs_1.resolutionStrategy);
|
return await (0, download_version_1.resolveVersion)(versionFromUvToml || versionFromPyproject || "latest", manifestFile, inputs_1.resolutionStrategy);
|
||||||
}
|
}
|
||||||
function addUvToPathAndOutput(cachedPath) {
|
function addUvToPathAndOutput(cachedPath) {
|
||||||
core.setOutput("uv-path", `${cachedPath}${path.sep}uv`);
|
core.setOutput("uv-path", `${cachedPath}${path.sep}uv`);
|
||||||
@@ -96228,14 +96508,13 @@ async function activateEnvironment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
function setCacheDir() {
|
function setCacheDir() {
|
||||||
if (inputs_1.enableCache) {
|
if (inputs_1.cacheLocalPath !== undefined) {
|
||||||
const cacheDirFromConfig = (0, config_file_1.getConfigValueFromTomlFile)("", "cache-dir");
|
if (inputs_1.cacheLocalPath.source === inputs_1.CacheLocalSource.Config) {
|
||||||
if (cacheDirFromConfig !== undefined) {
|
|
||||||
core.info("Using cache-dir from uv config file, not modifying UV_CACHE_DIR");
|
core.info("Using cache-dir from uv config file, not modifying UV_CACHE_DIR");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
core.exportVariable("UV_CACHE_DIR", inputs_1.cacheLocalPath);
|
core.exportVariable("UV_CACHE_DIR", inputs_1.cacheLocalPath.path);
|
||||||
core.info(`Set UV_CACHE_DIR to ${inputs_1.cacheLocalPath}`);
|
core.info(`Set UV_CACHE_DIR to ${inputs_1.cacheLocalPath.path}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function addMatchers() {
|
function addMatchers() {
|
||||||
@@ -96397,11 +96676,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.resolutionStrategy = exports.addProblemMatchers = exports.manifestFile = exports.githubToken = exports.pythonDir = exports.toolDir = exports.toolBinDir = exports.ignoreEmptyWorkdir = exports.ignoreNothingToCache = exports.cachePython = exports.pruneCache = exports.cacheDependencyGlob = exports.cacheLocalPath = exports.cacheSuffix = exports.saveCache = exports.restoreCache = exports.enableCache = exports.checkSum = exports.activateEnvironment = exports.pythonVersion = exports.versionFile = exports.version = exports.workingDirectory = void 0;
|
exports.resolutionStrategy = exports.addProblemMatchers = exports.manifestFile = exports.githubToken = exports.pythonDir = exports.toolDir = exports.toolBinDir = exports.ignoreEmptyWorkdir = exports.ignoreNothingToCache = exports.cachePython = exports.pruneCache = exports.cacheDependencyGlob = exports.cacheLocalPath = exports.cacheSuffix = exports.saveCache = exports.restoreCache = exports.enableCache = exports.checkSum = exports.activateEnvironment = exports.pythonVersion = exports.versionFile = exports.version = exports.workingDirectory = exports.CacheLocalSource = void 0;
|
||||||
exports.getUvPythonDir = getUvPythonDir;
|
exports.getUvPythonDir = getUvPythonDir;
|
||||||
const node_path_1 = __importDefault(__nccwpck_require__(6760));
|
const node_path_1 = __importDefault(__nccwpck_require__(6760));
|
||||||
const core = __importStar(__nccwpck_require__(7484));
|
const core = __importStar(__nccwpck_require__(7484));
|
||||||
const config_file_1 = __nccwpck_require__(7846);
|
const config_file_1 = __nccwpck_require__(7846);
|
||||||
|
var CacheLocalSource;
|
||||||
|
(function (CacheLocalSource) {
|
||||||
|
CacheLocalSource[CacheLocalSource["Input"] = 0] = "Input";
|
||||||
|
CacheLocalSource[CacheLocalSource["Config"] = 1] = "Config";
|
||||||
|
CacheLocalSource[CacheLocalSource["Env"] = 2] = "Env";
|
||||||
|
CacheLocalSource[CacheLocalSource["Default"] = 3] = "Default";
|
||||||
|
})(CacheLocalSource || (exports.CacheLocalSource = CacheLocalSource = {}));
|
||||||
exports.workingDirectory = core.getInput("working-directory");
|
exports.workingDirectory = core.getInput("working-directory");
|
||||||
exports.version = core.getInput("version");
|
exports.version = core.getInput("version");
|
||||||
exports.versionFile = getVersionFile();
|
exports.versionFile = getVersionFile();
|
||||||
@@ -96472,26 +96758,40 @@ function getCacheLocalPath() {
|
|||||||
const cacheLocalPathInput = core.getInput("cache-local-path");
|
const cacheLocalPathInput = core.getInput("cache-local-path");
|
||||||
if (cacheLocalPathInput !== "") {
|
if (cacheLocalPathInput !== "") {
|
||||||
const tildeExpanded = expandTilde(cacheLocalPathInput);
|
const tildeExpanded = expandTilde(cacheLocalPathInput);
|
||||||
return resolveRelativePath(tildeExpanded);
|
return {
|
||||||
|
path: resolveRelativePath(tildeExpanded),
|
||||||
|
source: CacheLocalSource.Input,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
const cacheDirFromConfig = getCacheDirFromConfig();
|
const cacheDirFromConfig = getCacheDirFromConfig();
|
||||||
if (cacheDirFromConfig !== undefined) {
|
if (cacheDirFromConfig !== undefined) {
|
||||||
return cacheDirFromConfig;
|
return { path: cacheDirFromConfig, source: CacheLocalSource.Config };
|
||||||
}
|
}
|
||||||
if (process.env.UV_CACHE_DIR !== undefined) {
|
if (process.env.UV_CACHE_DIR !== undefined) {
|
||||||
core.info(`UV_CACHE_DIR is already set to ${process.env.UV_CACHE_DIR}`);
|
core.info(`UV_CACHE_DIR is already set to ${process.env.UV_CACHE_DIR}`);
|
||||||
return process.env.UV_CACHE_DIR;
|
return { path: process.env.UV_CACHE_DIR, source: CacheLocalSource.Env };
|
||||||
}
|
}
|
||||||
|
if (getEnableCache()) {
|
||||||
if (process.env.RUNNER_ENVIRONMENT === "github-hosted") {
|
if (process.env.RUNNER_ENVIRONMENT === "github-hosted") {
|
||||||
if (process.env.RUNNER_TEMP !== undefined) {
|
if (process.env.RUNNER_TEMP !== undefined) {
|
||||||
return `${process.env.RUNNER_TEMP}${node_path_1.default.sep}setup-uv-cache`;
|
return {
|
||||||
|
path: `${process.env.RUNNER_TEMP}${node_path_1.default.sep}setup-uv-cache`,
|
||||||
|
source: CacheLocalSource.Default,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
throw Error("Could not determine UV_CACHE_DIR. Please make sure RUNNER_TEMP is set or provide the cache-local-path input");
|
throw Error("Could not determine UV_CACHE_DIR. Please make sure RUNNER_TEMP is set or provide the cache-local-path input");
|
||||||
}
|
}
|
||||||
if (process.platform === "win32") {
|
if (process.platform === "win32") {
|
||||||
return `${process.env.APPDATA}${node_path_1.default.sep}uv${node_path_1.default.sep}cache`;
|
return {
|
||||||
|
path: `${process.env.APPDATA}${node_path_1.default.sep}uv${node_path_1.default.sep}cache`,
|
||||||
|
source: CacheLocalSource.Default,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
path: `${process.env.HOME}${node_path_1.default.sep}.cache${node_path_1.default.sep}uv`,
|
||||||
|
source: CacheLocalSource.Default,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
return `${process.env.HOME}${node_path_1.default.sep}.cache${node_path_1.default.sep}uv`;
|
|
||||||
}
|
}
|
||||||
function getCacheDirFromConfig() {
|
function getCacheDirFromConfig() {
|
||||||
for (const filePath of [exports.versionFile, "uv.toml", "pyproject.toml"]) {
|
for (const filePath of [exports.versionFile, "uv.toml", "pyproject.toml"]) {
|
||||||
@@ -96573,36 +96873,6 @@ function getResolutionStrategy() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 971:
|
|
||||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
||||||
exports.Octokit = void 0;
|
|
||||||
const core_1 = __nccwpck_require__(767);
|
|
||||||
const plugin_paginate_rest_1 = __nccwpck_require__(3779);
|
|
||||||
const plugin_rest_endpoint_methods_1 = __nccwpck_require__(9210);
|
|
||||||
const fetch_1 = __nccwpck_require__(3385);
|
|
||||||
const DEFAULTS = {
|
|
||||||
baseUrl: "https://api.github.com",
|
|
||||||
userAgent: "setup-uv",
|
|
||||||
};
|
|
||||||
const OctokitWithPlugins = core_1.Octokit.plugin(plugin_paginate_rest_1.paginateRest, plugin_rest_endpoint_methods_1.legacyRestEndpointMethods);
|
|
||||||
exports.Octokit = OctokitWithPlugins.defaults(function buildDefaults(options) {
|
|
||||||
return {
|
|
||||||
...DEFAULTS,
|
|
||||||
...options,
|
|
||||||
request: {
|
|
||||||
fetch: fetch_1.fetch,
|
|
||||||
...options.request,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 8361:
|
/***/ 8361:
|
||||||
@@ -96643,9 +96913,15 @@ var __importStar = (this && this.__importStar) || (function () {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
})();
|
})();
|
||||||
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.getArch = getArch;
|
exports.getArch = getArch;
|
||||||
exports.getPlatform = getPlatform;
|
exports.getPlatform = getPlatform;
|
||||||
|
exports.getOSNameVersion = getOSNameVersion;
|
||||||
|
const node_fs_1 = __importDefault(__nccwpck_require__(3024));
|
||||||
|
const node_os_1 = __importDefault(__nccwpck_require__(8161));
|
||||||
const core = __importStar(__nccwpck_require__(7484));
|
const core = __importStar(__nccwpck_require__(7484));
|
||||||
const exec = __importStar(__nccwpck_require__(5236));
|
const exec = __importStar(__nccwpck_require__(5236));
|
||||||
function getArch() {
|
function getArch() {
|
||||||
@@ -96703,6 +96979,63 @@ async function isMuslOs() {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Returns OS name and version for cache key differentiation.
|
||||||
|
* Examples: "ubuntu-22.04", "macos-14", "windows-2022"
|
||||||
|
* Throws if OS detection fails.
|
||||||
|
*/
|
||||||
|
function getOSNameVersion() {
|
||||||
|
const platform = process.platform;
|
||||||
|
if (platform === "linux") {
|
||||||
|
return getLinuxOSNameVersion();
|
||||||
|
}
|
||||||
|
if (platform === "darwin") {
|
||||||
|
return getMacOSNameVersion();
|
||||||
|
}
|
||||||
|
if (platform === "win32") {
|
||||||
|
return getWindowsNameVersion();
|
||||||
|
}
|
||||||
|
throw new Error(`Unsupported platform: ${platform}`);
|
||||||
|
}
|
||||||
|
function getLinuxOSNameVersion() {
|
||||||
|
const files = ["/etc/os-release", "/usr/lib/os-release"];
|
||||||
|
for (const file of files) {
|
||||||
|
try {
|
||||||
|
const content = node_fs_1.default.readFileSync(file, "utf8");
|
||||||
|
const id = parseOsReleaseValue(content, "ID");
|
||||||
|
const versionId = parseOsReleaseValue(content, "VERSION_ID");
|
||||||
|
if (id && versionId) {
|
||||||
|
return `${id}-${versionId}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
// Try next file
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new Error("Failed to determine Linux distribution. " +
|
||||||
|
"Could not read /etc/os-release or /usr/lib/os-release");
|
||||||
|
}
|
||||||
|
function parseOsReleaseValue(content, key) {
|
||||||
|
const regex = new RegExp(`^${key}=["']?([^"'\\n]*)["']?$`, "m");
|
||||||
|
const match = content.match(regex);
|
||||||
|
return match?.[1];
|
||||||
|
}
|
||||||
|
function getMacOSNameVersion() {
|
||||||
|
const darwinVersion = Number.parseInt(node_os_1.default.release().split(".")[0], 10);
|
||||||
|
if (Number.isNaN(darwinVersion)) {
|
||||||
|
throw new Error(`Failed to parse macOS version from: ${node_os_1.default.release()}`);
|
||||||
|
}
|
||||||
|
const macosVersion = darwinVersion - 9;
|
||||||
|
return `macos-${macosVersion}`;
|
||||||
|
}
|
||||||
|
function getWindowsNameVersion() {
|
||||||
|
const version = node_os_1.default.version();
|
||||||
|
const match = version.match(/Windows(?: Server)? (\d+)/);
|
||||||
|
if (!match) {
|
||||||
|
throw new Error(`Failed to parse Windows version from: ${version}`);
|
||||||
|
}
|
||||||
|
return `windows-${match[1]}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
@@ -97068,6 +97401,14 @@ module.exports = require("node:fs");
|
|||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 8161:
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
module.exports = require("node:os");
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
/***/ 6760:
|
/***/ 6760:
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
@@ -98835,184 +99176,6 @@ function parseParams (str) {
|
|||||||
module.exports = parseParams
|
module.exports = parseParams
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 1120:
|
|
||||||
/***/ ((module) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
var __webpack_unused_export__;
|
|
||||||
|
|
||||||
|
|
||||||
const NullObject = function NullObject () { }
|
|
||||||
NullObject.prototype = Object.create(null)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* RegExp to match *( ";" parameter ) in RFC 7231 sec 3.1.1.1
|
|
||||||
*
|
|
||||||
* parameter = token "=" ( token / quoted-string )
|
|
||||||
* token = 1*tchar
|
|
||||||
* tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*"
|
|
||||||
* / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~"
|
|
||||||
* / DIGIT / ALPHA
|
|
||||||
* ; any VCHAR, except delimiters
|
|
||||||
* quoted-string = DQUOTE *( qdtext / quoted-pair ) DQUOTE
|
|
||||||
* qdtext = HTAB / SP / %x21 / %x23-5B / %x5D-7E / obs-text
|
|
||||||
* obs-text = %x80-FF
|
|
||||||
* quoted-pair = "\" ( HTAB / SP / VCHAR / obs-text )
|
|
||||||
*/
|
|
||||||
const paramRE = /; *([!#$%&'*+.^\w`|~-]+)=("(?:[\v\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\v\u0020-\u00ff])*"|[!#$%&'*+.^\w`|~-]+) */gu
|
|
||||||
|
|
||||||
/**
|
|
||||||
* RegExp to match quoted-pair in RFC 7230 sec 3.2.6
|
|
||||||
*
|
|
||||||
* quoted-pair = "\" ( HTAB / SP / VCHAR / obs-text )
|
|
||||||
* obs-text = %x80-FF
|
|
||||||
*/
|
|
||||||
const quotedPairRE = /\\([\v\u0020-\u00ff])/gu
|
|
||||||
|
|
||||||
/**
|
|
||||||
* RegExp to match type in RFC 7231 sec 3.1.1.1
|
|
||||||
*
|
|
||||||
* media-type = type "/" subtype
|
|
||||||
* type = token
|
|
||||||
* subtype = token
|
|
||||||
*/
|
|
||||||
const mediaTypeRE = /^[!#$%&'*+.^\w|~-]+\/[!#$%&'*+.^\w|~-]+$/u
|
|
||||||
|
|
||||||
// default ContentType to prevent repeated object creation
|
|
||||||
const defaultContentType = { type: '', parameters: new NullObject() }
|
|
||||||
Object.freeze(defaultContentType.parameters)
|
|
||||||
Object.freeze(defaultContentType)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Parse media type to object.
|
|
||||||
*
|
|
||||||
* @param {string|object} header
|
|
||||||
* @return {Object}
|
|
||||||
* @public
|
|
||||||
*/
|
|
||||||
|
|
||||||
function parse (header) {
|
|
||||||
if (typeof header !== 'string') {
|
|
||||||
throw new TypeError('argument header is required and must be a string')
|
|
||||||
}
|
|
||||||
|
|
||||||
let index = header.indexOf(';')
|
|
||||||
const type = index !== -1
|
|
||||||
? header.slice(0, index).trim()
|
|
||||||
: header.trim()
|
|
||||||
|
|
||||||
if (mediaTypeRE.test(type) === false) {
|
|
||||||
throw new TypeError('invalid media type')
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = {
|
|
||||||
type: type.toLowerCase(),
|
|
||||||
parameters: new NullObject()
|
|
||||||
}
|
|
||||||
|
|
||||||
// parse parameters
|
|
||||||
if (index === -1) {
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
let key
|
|
||||||
let match
|
|
||||||
let value
|
|
||||||
|
|
||||||
paramRE.lastIndex = index
|
|
||||||
|
|
||||||
while ((match = paramRE.exec(header))) {
|
|
||||||
if (match.index !== index) {
|
|
||||||
throw new TypeError('invalid parameter format')
|
|
||||||
}
|
|
||||||
|
|
||||||
index += match[0].length
|
|
||||||
key = match[1].toLowerCase()
|
|
||||||
value = match[2]
|
|
||||||
|
|
||||||
if (value[0] === '"') {
|
|
||||||
// remove quotes and escapes
|
|
||||||
value = value
|
|
||||||
.slice(1, value.length - 1)
|
|
||||||
|
|
||||||
quotedPairRE.test(value) && (value = value.replace(quotedPairRE, '$1'))
|
|
||||||
}
|
|
||||||
|
|
||||||
result.parameters[key] = value
|
|
||||||
}
|
|
||||||
|
|
||||||
if (index !== header.length) {
|
|
||||||
throw new TypeError('invalid parameter format')
|
|
||||||
}
|
|
||||||
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
function safeParse (header) {
|
|
||||||
if (typeof header !== 'string') {
|
|
||||||
return defaultContentType
|
|
||||||
}
|
|
||||||
|
|
||||||
let index = header.indexOf(';')
|
|
||||||
const type = index !== -1
|
|
||||||
? header.slice(0, index).trim()
|
|
||||||
: header.trim()
|
|
||||||
|
|
||||||
if (mediaTypeRE.test(type) === false) {
|
|
||||||
return defaultContentType
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = {
|
|
||||||
type: type.toLowerCase(),
|
|
||||||
parameters: new NullObject()
|
|
||||||
}
|
|
||||||
|
|
||||||
// parse parameters
|
|
||||||
if (index === -1) {
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
let key
|
|
||||||
let match
|
|
||||||
let value
|
|
||||||
|
|
||||||
paramRE.lastIndex = index
|
|
||||||
|
|
||||||
while ((match = paramRE.exec(header))) {
|
|
||||||
if (match.index !== index) {
|
|
||||||
return defaultContentType
|
|
||||||
}
|
|
||||||
|
|
||||||
index += match[0].length
|
|
||||||
key = match[1].toLowerCase()
|
|
||||||
value = match[2]
|
|
||||||
|
|
||||||
if (value[0] === '"') {
|
|
||||||
// remove quotes and escapes
|
|
||||||
value = value
|
|
||||||
.slice(1, value.length - 1)
|
|
||||||
|
|
||||||
quotedPairRE.test(value) && (value = value.replace(quotedPairRE, '$1'))
|
|
||||||
}
|
|
||||||
|
|
||||||
result.parameters[key] = value
|
|
||||||
}
|
|
||||||
|
|
||||||
if (index !== header.length) {
|
|
||||||
return defaultContentType
|
|
||||||
}
|
|
||||||
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
__webpack_unused_export__ = { parse, safeParse }
|
|
||||||
__webpack_unused_export__ = parse
|
|
||||||
module.exports.xL = safeParse
|
|
||||||
__webpack_unused_export__ = defaultContentType
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 7106:
|
/***/ 7106:
|
||||||
@@ -99922,3876 +100085,6 @@ var index_default = { parse, stringify, TomlDate, TomlError };
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 767:
|
|
||||||
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __nccwpck_require__) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
// ESM COMPAT FLAG
|
|
||||||
__nccwpck_require__.r(__webpack_exports__);
|
|
||||||
|
|
||||||
// EXPORTS
|
|
||||||
__nccwpck_require__.d(__webpack_exports__, {
|
|
||||||
Octokit: () => (/* binding */ Octokit)
|
|
||||||
});
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/universal-user-agent/index.js
|
|
||||||
function getUserAgent() {
|
|
||||||
if (typeof navigator === "object" && "userAgent" in navigator) {
|
|
||||||
return navigator.userAgent;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof process === "object" && process.version !== undefined) {
|
|
||||||
return `Node.js/${process.version.substr(1)} (${process.platform}; ${
|
|
||||||
process.arch
|
|
||||||
})`;
|
|
||||||
}
|
|
||||||
|
|
||||||
return "<environment undetectable>";
|
|
||||||
}
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/before-after-hook/lib/register.js
|
|
||||||
// @ts-check
|
|
||||||
|
|
||||||
function register(state, name, method, options) {
|
|
||||||
if (typeof method !== "function") {
|
|
||||||
throw new Error("method for before hook must be a function");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!options) {
|
|
||||||
options = {};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Array.isArray(name)) {
|
|
||||||
return name.reverse().reduce((callback, name) => {
|
|
||||||
return register.bind(null, state, name, callback, options);
|
|
||||||
}, method)();
|
|
||||||
}
|
|
||||||
|
|
||||||
return Promise.resolve().then(() => {
|
|
||||||
if (!state.registry[name]) {
|
|
||||||
return method(options);
|
|
||||||
}
|
|
||||||
|
|
||||||
return state.registry[name].reduce((method, registered) => {
|
|
||||||
return registered.hook.bind(null, method, options);
|
|
||||||
}, method)();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/before-after-hook/lib/add.js
|
|
||||||
// @ts-check
|
|
||||||
|
|
||||||
function addHook(state, kind, name, hook) {
|
|
||||||
const orig = hook;
|
|
||||||
if (!state.registry[name]) {
|
|
||||||
state.registry[name] = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (kind === "before") {
|
|
||||||
hook = (method, options) => {
|
|
||||||
return Promise.resolve()
|
|
||||||
.then(orig.bind(null, options))
|
|
||||||
.then(method.bind(null, options));
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (kind === "after") {
|
|
||||||
hook = (method, options) => {
|
|
||||||
let result;
|
|
||||||
return Promise.resolve()
|
|
||||||
.then(method.bind(null, options))
|
|
||||||
.then((result_) => {
|
|
||||||
result = result_;
|
|
||||||
return orig(result, options);
|
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
return result;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (kind === "error") {
|
|
||||||
hook = (method, options) => {
|
|
||||||
return Promise.resolve()
|
|
||||||
.then(method.bind(null, options))
|
|
||||||
.catch((error) => {
|
|
||||||
return orig(error, options);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
state.registry[name].push({
|
|
||||||
hook: hook,
|
|
||||||
orig: orig,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/before-after-hook/lib/remove.js
|
|
||||||
// @ts-check
|
|
||||||
|
|
||||||
function removeHook(state, name, method) {
|
|
||||||
if (!state.registry[name]) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const index = state.registry[name]
|
|
||||||
.map((registered) => {
|
|
||||||
return registered.orig;
|
|
||||||
})
|
|
||||||
.indexOf(method);
|
|
||||||
|
|
||||||
if (index === -1) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
state.registry[name].splice(index, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/before-after-hook/index.js
|
|
||||||
// @ts-check
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// bind with array of arguments: https://stackoverflow.com/a/21792913
|
|
||||||
const bind = Function.bind;
|
|
||||||
const bindable = bind.bind(bind);
|
|
||||||
|
|
||||||
function bindApi(hook, state, name) {
|
|
||||||
const removeHookRef = bindable(removeHook, null).apply(
|
|
||||||
null,
|
|
||||||
name ? [state, name] : [state]
|
|
||||||
);
|
|
||||||
hook.api = { remove: removeHookRef };
|
|
||||||
hook.remove = removeHookRef;
|
|
||||||
["before", "error", "after", "wrap"].forEach((kind) => {
|
|
||||||
const args = name ? [state, kind, name] : [state, kind];
|
|
||||||
hook[kind] = hook.api[kind] = bindable(addHook, null).apply(null, args);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function Singular() {
|
|
||||||
const singularHookName = Symbol("Singular");
|
|
||||||
const singularHookState = {
|
|
||||||
registry: {},
|
|
||||||
};
|
|
||||||
const singularHook = register.bind(null, singularHookState, singularHookName);
|
|
||||||
bindApi(singularHook, singularHookState, singularHookName);
|
|
||||||
return singularHook;
|
|
||||||
}
|
|
||||||
|
|
||||||
function Collection() {
|
|
||||||
const state = {
|
|
||||||
registry: {},
|
|
||||||
};
|
|
||||||
|
|
||||||
const hook = register.bind(null, state);
|
|
||||||
bindApi(hook, state);
|
|
||||||
|
|
||||||
return hook;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* harmony default export */ const before_after_hook = ({ Singular, Collection });
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/endpoint/dist-bundle/index.js
|
|
||||||
// pkg/dist-src/defaults.js
|
|
||||||
|
|
||||||
|
|
||||||
// pkg/dist-src/version.js
|
|
||||||
var VERSION = "0.0.0-development";
|
|
||||||
|
|
||||||
// pkg/dist-src/defaults.js
|
|
||||||
var userAgent = `octokit-endpoint.js/${VERSION} ${getUserAgent()}`;
|
|
||||||
var DEFAULTS = {
|
|
||||||
method: "GET",
|
|
||||||
baseUrl: "https://api.github.com",
|
|
||||||
headers: {
|
|
||||||
accept: "application/vnd.github.v3+json",
|
|
||||||
"user-agent": userAgent
|
|
||||||
},
|
|
||||||
mediaType: {
|
|
||||||
format: ""
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// pkg/dist-src/util/lowercase-keys.js
|
|
||||||
function lowercaseKeys(object) {
|
|
||||||
if (!object) {
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
return Object.keys(object).reduce((newObj, key) => {
|
|
||||||
newObj[key.toLowerCase()] = object[key];
|
|
||||||
return newObj;
|
|
||||||
}, {});
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/util/is-plain-object.js
|
|
||||||
function isPlainObject(value) {
|
|
||||||
if (typeof value !== "object" || value === null) return false;
|
|
||||||
if (Object.prototype.toString.call(value) !== "[object Object]") return false;
|
|
||||||
const proto = Object.getPrototypeOf(value);
|
|
||||||
if (proto === null) return true;
|
|
||||||
const Ctor = Object.prototype.hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
|
||||||
return typeof Ctor === "function" && Ctor instanceof Ctor && Function.prototype.call(Ctor) === Function.prototype.call(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/util/merge-deep.js
|
|
||||||
function mergeDeep(defaults, options) {
|
|
||||||
const result = Object.assign({}, defaults);
|
|
||||||
Object.keys(options).forEach((key) => {
|
|
||||||
if (isPlainObject(options[key])) {
|
|
||||||
if (!(key in defaults)) Object.assign(result, { [key]: options[key] });
|
|
||||||
else result[key] = mergeDeep(defaults[key], options[key]);
|
|
||||||
} else {
|
|
||||||
Object.assign(result, { [key]: options[key] });
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/util/remove-undefined-properties.js
|
|
||||||
function removeUndefinedProperties(obj) {
|
|
||||||
for (const key in obj) {
|
|
||||||
if (obj[key] === void 0) {
|
|
||||||
delete obj[key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return obj;
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/merge.js
|
|
||||||
function merge(defaults, route, options) {
|
|
||||||
if (typeof route === "string") {
|
|
||||||
let [method, url] = route.split(" ");
|
|
||||||
options = Object.assign(url ? { method, url } : { url: method }, options);
|
|
||||||
} else {
|
|
||||||
options = Object.assign({}, route);
|
|
||||||
}
|
|
||||||
options.headers = lowercaseKeys(options.headers);
|
|
||||||
removeUndefinedProperties(options);
|
|
||||||
removeUndefinedProperties(options.headers);
|
|
||||||
const mergedOptions = mergeDeep(defaults || {}, options);
|
|
||||||
if (options.url === "/graphql") {
|
|
||||||
if (defaults && defaults.mediaType.previews?.length) {
|
|
||||||
mergedOptions.mediaType.previews = defaults.mediaType.previews.filter(
|
|
||||||
(preview) => !mergedOptions.mediaType.previews.includes(preview)
|
|
||||||
).concat(mergedOptions.mediaType.previews);
|
|
||||||
}
|
|
||||||
mergedOptions.mediaType.previews = (mergedOptions.mediaType.previews || []).map((preview) => preview.replace(/-preview/, ""));
|
|
||||||
}
|
|
||||||
return mergedOptions;
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/util/add-query-parameters.js
|
|
||||||
function addQueryParameters(url, parameters) {
|
|
||||||
const separator = /\?/.test(url) ? "&" : "?";
|
|
||||||
const names = Object.keys(parameters);
|
|
||||||
if (names.length === 0) {
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
return url + separator + names.map((name) => {
|
|
||||||
if (name === "q") {
|
|
||||||
return "q=" + parameters.q.split("+").map(encodeURIComponent).join("+");
|
|
||||||
}
|
|
||||||
return `${name}=${encodeURIComponent(parameters[name])}`;
|
|
||||||
}).join("&");
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/util/extract-url-variable-names.js
|
|
||||||
var urlVariableRegex = /\{[^{}}]+\}/g;
|
|
||||||
function removeNonChars(variableName) {
|
|
||||||
return variableName.replace(/(?:^\W+)|(?:(?<!\W)\W+$)/g, "").split(/,/);
|
|
||||||
}
|
|
||||||
function extractUrlVariableNames(url) {
|
|
||||||
const matches = url.match(urlVariableRegex);
|
|
||||||
if (!matches) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []);
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/util/omit.js
|
|
||||||
function omit(object, keysToOmit) {
|
|
||||||
const result = { __proto__: null };
|
|
||||||
for (const key of Object.keys(object)) {
|
|
||||||
if (keysToOmit.indexOf(key) === -1) {
|
|
||||||
result[key] = object[key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/util/url-template.js
|
|
||||||
function encodeReserved(str) {
|
|
||||||
return str.split(/(%[0-9A-Fa-f]{2})/g).map(function(part) {
|
|
||||||
if (!/%[0-9A-Fa-f]/.test(part)) {
|
|
||||||
part = encodeURI(part).replace(/%5B/g, "[").replace(/%5D/g, "]");
|
|
||||||
}
|
|
||||||
return part;
|
|
||||||
}).join("");
|
|
||||||
}
|
|
||||||
function encodeUnreserved(str) {
|
|
||||||
return encodeURIComponent(str).replace(/[!'()*]/g, function(c) {
|
|
||||||
return "%" + c.charCodeAt(0).toString(16).toUpperCase();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
function encodeValue(operator, value, key) {
|
|
||||||
value = operator === "+" || operator === "#" ? encodeReserved(value) : encodeUnreserved(value);
|
|
||||||
if (key) {
|
|
||||||
return encodeUnreserved(key) + "=" + value;
|
|
||||||
} else {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function isDefined(value) {
|
|
||||||
return value !== void 0 && value !== null;
|
|
||||||
}
|
|
||||||
function isKeyOperator(operator) {
|
|
||||||
return operator === ";" || operator === "&" || operator === "?";
|
|
||||||
}
|
|
||||||
function getValues(context, operator, key, modifier) {
|
|
||||||
var value = context[key], result = [];
|
|
||||||
if (isDefined(value) && value !== "") {
|
|
||||||
if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") {
|
|
||||||
value = value.toString();
|
|
||||||
if (modifier && modifier !== "*") {
|
|
||||||
value = value.substring(0, parseInt(modifier, 10));
|
|
||||||
}
|
|
||||||
result.push(
|
|
||||||
encodeValue(operator, value, isKeyOperator(operator) ? key : "")
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
if (modifier === "*") {
|
|
||||||
if (Array.isArray(value)) {
|
|
||||||
value.filter(isDefined).forEach(function(value2) {
|
|
||||||
result.push(
|
|
||||||
encodeValue(operator, value2, isKeyOperator(operator) ? key : "")
|
|
||||||
);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
Object.keys(value).forEach(function(k) {
|
|
||||||
if (isDefined(value[k])) {
|
|
||||||
result.push(encodeValue(operator, value[k], k));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
const tmp = [];
|
|
||||||
if (Array.isArray(value)) {
|
|
||||||
value.filter(isDefined).forEach(function(value2) {
|
|
||||||
tmp.push(encodeValue(operator, value2));
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
Object.keys(value).forEach(function(k) {
|
|
||||||
if (isDefined(value[k])) {
|
|
||||||
tmp.push(encodeUnreserved(k));
|
|
||||||
tmp.push(encodeValue(operator, value[k].toString()));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (isKeyOperator(operator)) {
|
|
||||||
result.push(encodeUnreserved(key) + "=" + tmp.join(","));
|
|
||||||
} else if (tmp.length !== 0) {
|
|
||||||
result.push(tmp.join(","));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (operator === ";") {
|
|
||||||
if (isDefined(value)) {
|
|
||||||
result.push(encodeUnreserved(key));
|
|
||||||
}
|
|
||||||
} else if (value === "" && (operator === "&" || operator === "?")) {
|
|
||||||
result.push(encodeUnreserved(key) + "=");
|
|
||||||
} else if (value === "") {
|
|
||||||
result.push("");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
function parseUrl(template) {
|
|
||||||
return {
|
|
||||||
expand: expand.bind(null, template)
|
|
||||||
};
|
|
||||||
}
|
|
||||||
function expand(template, context) {
|
|
||||||
var operators = ["+", "#", ".", "/", ";", "?", "&"];
|
|
||||||
template = template.replace(
|
|
||||||
/\{([^\{\}]+)\}|([^\{\}]+)/g,
|
|
||||||
function(_, expression, literal) {
|
|
||||||
if (expression) {
|
|
||||||
let operator = "";
|
|
||||||
const values = [];
|
|
||||||
if (operators.indexOf(expression.charAt(0)) !== -1) {
|
|
||||||
operator = expression.charAt(0);
|
|
||||||
expression = expression.substr(1);
|
|
||||||
}
|
|
||||||
expression.split(/,/g).forEach(function(variable) {
|
|
||||||
var tmp = /([^:\*]*)(?::(\d+)|(\*))?/.exec(variable);
|
|
||||||
values.push(getValues(context, operator, tmp[1], tmp[2] || tmp[3]));
|
|
||||||
});
|
|
||||||
if (operator && operator !== "+") {
|
|
||||||
var separator = ",";
|
|
||||||
if (operator === "?") {
|
|
||||||
separator = "&";
|
|
||||||
} else if (operator !== "#") {
|
|
||||||
separator = operator;
|
|
||||||
}
|
|
||||||
return (values.length !== 0 ? operator : "") + values.join(separator);
|
|
||||||
} else {
|
|
||||||
return values.join(",");
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return encodeReserved(literal);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
if (template === "/") {
|
|
||||||
return template;
|
|
||||||
} else {
|
|
||||||
return template.replace(/\/$/, "");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/parse.js
|
|
||||||
function parse(options) {
|
|
||||||
let method = options.method.toUpperCase();
|
|
||||||
let url = (options.url || "/").replace(/:([a-z]\w+)/g, "{$1}");
|
|
||||||
let headers = Object.assign({}, options.headers);
|
|
||||||
let body;
|
|
||||||
let parameters = omit(options, [
|
|
||||||
"method",
|
|
||||||
"baseUrl",
|
|
||||||
"url",
|
|
||||||
"headers",
|
|
||||||
"request",
|
|
||||||
"mediaType"
|
|
||||||
]);
|
|
||||||
const urlVariableNames = extractUrlVariableNames(url);
|
|
||||||
url = parseUrl(url).expand(parameters);
|
|
||||||
if (!/^http/.test(url)) {
|
|
||||||
url = options.baseUrl + url;
|
|
||||||
}
|
|
||||||
const omittedParameters = Object.keys(options).filter((option) => urlVariableNames.includes(option)).concat("baseUrl");
|
|
||||||
const remainingParameters = omit(parameters, omittedParameters);
|
|
||||||
const isBinaryRequest = /application\/octet-stream/i.test(headers.accept);
|
|
||||||
if (!isBinaryRequest) {
|
|
||||||
if (options.mediaType.format) {
|
|
||||||
headers.accept = headers.accept.split(/,/).map(
|
|
||||||
(format) => format.replace(
|
|
||||||
/application\/vnd(\.\w+)(\.v3)?(\.\w+)?(\+json)?$/,
|
|
||||||
`application/vnd$1$2.${options.mediaType.format}`
|
|
||||||
)
|
|
||||||
).join(",");
|
|
||||||
}
|
|
||||||
if (url.endsWith("/graphql")) {
|
|
||||||
if (options.mediaType.previews?.length) {
|
|
||||||
const previewsFromAcceptHeader = headers.accept.match(/(?<![\w-])[\w-]+(?=-preview)/g) || [];
|
|
||||||
headers.accept = previewsFromAcceptHeader.concat(options.mediaType.previews).map((preview) => {
|
|
||||||
const format = options.mediaType.format ? `.${options.mediaType.format}` : "+json";
|
|
||||||
return `application/vnd.github.${preview}-preview${format}`;
|
|
||||||
}).join(",");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (["GET", "HEAD"].includes(method)) {
|
|
||||||
url = addQueryParameters(url, remainingParameters);
|
|
||||||
} else {
|
|
||||||
if ("data" in remainingParameters) {
|
|
||||||
body = remainingParameters.data;
|
|
||||||
} else {
|
|
||||||
if (Object.keys(remainingParameters).length) {
|
|
||||||
body = remainingParameters;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!headers["content-type"] && typeof body !== "undefined") {
|
|
||||||
headers["content-type"] = "application/json; charset=utf-8";
|
|
||||||
}
|
|
||||||
if (["PATCH", "PUT"].includes(method) && typeof body === "undefined") {
|
|
||||||
body = "";
|
|
||||||
}
|
|
||||||
return Object.assign(
|
|
||||||
{ method, url, headers },
|
|
||||||
typeof body !== "undefined" ? { body } : null,
|
|
||||||
options.request ? { request: options.request } : null
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/endpoint-with-defaults.js
|
|
||||||
function endpointWithDefaults(defaults, route, options) {
|
|
||||||
return parse(merge(defaults, route, options));
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/with-defaults.js
|
|
||||||
function withDefaults(oldDefaults, newDefaults) {
|
|
||||||
const DEFAULTS2 = merge(oldDefaults, newDefaults);
|
|
||||||
const endpoint2 = endpointWithDefaults.bind(null, DEFAULTS2);
|
|
||||||
return Object.assign(endpoint2, {
|
|
||||||
DEFAULTS: DEFAULTS2,
|
|
||||||
defaults: withDefaults.bind(null, DEFAULTS2),
|
|
||||||
merge: merge.bind(null, DEFAULTS2),
|
|
||||||
parse
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/index.js
|
|
||||||
var endpoint = withDefaults(null, DEFAULTS);
|
|
||||||
|
|
||||||
|
|
||||||
// EXTERNAL MODULE: ./node_modules/fast-content-type-parse/index.js
|
|
||||||
var fast_content_type_parse = __nccwpck_require__(1120);
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/request-error/dist-src/index.js
|
|
||||||
class RequestError extends Error {
|
|
||||||
name;
|
|
||||||
/**
|
|
||||||
* http status code
|
|
||||||
*/
|
|
||||||
status;
|
|
||||||
/**
|
|
||||||
* Request options that lead to the error.
|
|
||||||
*/
|
|
||||||
request;
|
|
||||||
/**
|
|
||||||
* Response object if a response was received
|
|
||||||
*/
|
|
||||||
response;
|
|
||||||
constructor(message, statusCode, options) {
|
|
||||||
super(message);
|
|
||||||
this.name = "HttpError";
|
|
||||||
this.status = Number.parseInt(statusCode);
|
|
||||||
if (Number.isNaN(this.status)) {
|
|
||||||
this.status = 0;
|
|
||||||
}
|
|
||||||
if ("response" in options) {
|
|
||||||
this.response = options.response;
|
|
||||||
}
|
|
||||||
const requestCopy = Object.assign({}, options.request);
|
|
||||||
if (options.request.headers.authorization) {
|
|
||||||
requestCopy.headers = Object.assign({}, options.request.headers, {
|
|
||||||
authorization: options.request.headers.authorization.replace(
|
|
||||||
/(?<! ) .*$/,
|
|
||||||
" [REDACTED]"
|
|
||||||
)
|
|
||||||
});
|
|
||||||
}
|
|
||||||
requestCopy.url = requestCopy.url.replace(/\bclient_secret=\w+/g, "client_secret=[REDACTED]").replace(/\baccess_token=\w+/g, "access_token=[REDACTED]");
|
|
||||||
this.request = requestCopy;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/request/dist-bundle/index.js
|
|
||||||
// pkg/dist-src/index.js
|
|
||||||
|
|
||||||
|
|
||||||
// pkg/dist-src/defaults.js
|
|
||||||
|
|
||||||
|
|
||||||
// pkg/dist-src/version.js
|
|
||||||
var dist_bundle_VERSION = "10.0.5";
|
|
||||||
|
|
||||||
// pkg/dist-src/defaults.js
|
|
||||||
var defaults_default = {
|
|
||||||
headers: {
|
|
||||||
"user-agent": `octokit-request.js/${dist_bundle_VERSION} ${getUserAgent()}`
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// pkg/dist-src/fetch-wrapper.js
|
|
||||||
|
|
||||||
|
|
||||||
// pkg/dist-src/is-plain-object.js
|
|
||||||
function dist_bundle_isPlainObject(value) {
|
|
||||||
if (typeof value !== "object" || value === null) return false;
|
|
||||||
if (Object.prototype.toString.call(value) !== "[object Object]") return false;
|
|
||||||
const proto = Object.getPrototypeOf(value);
|
|
||||||
if (proto === null) return true;
|
|
||||||
const Ctor = Object.prototype.hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
|
||||||
return typeof Ctor === "function" && Ctor instanceof Ctor && Function.prototype.call(Ctor) === Function.prototype.call(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/fetch-wrapper.js
|
|
||||||
|
|
||||||
async function fetchWrapper(requestOptions) {
|
|
||||||
const fetch = requestOptions.request?.fetch || globalThis.fetch;
|
|
||||||
if (!fetch) {
|
|
||||||
throw new Error(
|
|
||||||
"fetch is not set. Please pass a fetch implementation as new Octokit({ request: { fetch }}). Learn more at https://github.com/octokit/octokit.js/#fetch-missing"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
const log = requestOptions.request?.log || console;
|
|
||||||
const parseSuccessResponseBody = requestOptions.request?.parseSuccessResponseBody !== false;
|
|
||||||
const body = dist_bundle_isPlainObject(requestOptions.body) || Array.isArray(requestOptions.body) ? JSON.stringify(requestOptions.body) : requestOptions.body;
|
|
||||||
const requestHeaders = Object.fromEntries(
|
|
||||||
Object.entries(requestOptions.headers).map(([name, value]) => [
|
|
||||||
name,
|
|
||||||
String(value)
|
|
||||||
])
|
|
||||||
);
|
|
||||||
let fetchResponse;
|
|
||||||
try {
|
|
||||||
fetchResponse = await fetch(requestOptions.url, {
|
|
||||||
method: requestOptions.method,
|
|
||||||
body,
|
|
||||||
redirect: requestOptions.request?.redirect,
|
|
||||||
headers: requestHeaders,
|
|
||||||
signal: requestOptions.request?.signal,
|
|
||||||
// duplex must be set if request.body is ReadableStream or Async Iterables.
|
|
||||||
// See https://fetch.spec.whatwg.org/#dom-requestinit-duplex.
|
|
||||||
...requestOptions.body && { duplex: "half" }
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
let message = "Unknown Error";
|
|
||||||
if (error instanceof Error) {
|
|
||||||
if (error.name === "AbortError") {
|
|
||||||
error.status = 500;
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
message = error.message;
|
|
||||||
if (error.name === "TypeError" && "cause" in error) {
|
|
||||||
if (error.cause instanceof Error) {
|
|
||||||
message = error.cause.message;
|
|
||||||
} else if (typeof error.cause === "string") {
|
|
||||||
message = error.cause;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const requestError = new RequestError(message, 500, {
|
|
||||||
request: requestOptions
|
|
||||||
});
|
|
||||||
requestError.cause = error;
|
|
||||||
throw requestError;
|
|
||||||
}
|
|
||||||
const status = fetchResponse.status;
|
|
||||||
const url = fetchResponse.url;
|
|
||||||
const responseHeaders = {};
|
|
||||||
for (const [key, value] of fetchResponse.headers) {
|
|
||||||
responseHeaders[key] = value;
|
|
||||||
}
|
|
||||||
const octokitResponse = {
|
|
||||||
url,
|
|
||||||
status,
|
|
||||||
headers: responseHeaders,
|
|
||||||
data: ""
|
|
||||||
};
|
|
||||||
if ("deprecation" in responseHeaders) {
|
|
||||||
const matches = responseHeaders.link && responseHeaders.link.match(/<([^<>]+)>; rel="deprecation"/);
|
|
||||||
const deprecationLink = matches && matches.pop();
|
|
||||||
log.warn(
|
|
||||||
`[@octokit/request] "${requestOptions.method} ${requestOptions.url}" is deprecated. It is scheduled to be removed on ${responseHeaders.sunset}${deprecationLink ? `. See ${deprecationLink}` : ""}`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if (status === 204 || status === 205) {
|
|
||||||
return octokitResponse;
|
|
||||||
}
|
|
||||||
if (requestOptions.method === "HEAD") {
|
|
||||||
if (status < 400) {
|
|
||||||
return octokitResponse;
|
|
||||||
}
|
|
||||||
throw new RequestError(fetchResponse.statusText, status, {
|
|
||||||
response: octokitResponse,
|
|
||||||
request: requestOptions
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (status === 304) {
|
|
||||||
octokitResponse.data = await getResponseData(fetchResponse);
|
|
||||||
throw new RequestError("Not modified", status, {
|
|
||||||
response: octokitResponse,
|
|
||||||
request: requestOptions
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (status >= 400) {
|
|
||||||
octokitResponse.data = await getResponseData(fetchResponse);
|
|
||||||
throw new RequestError(toErrorMessage(octokitResponse.data), status, {
|
|
||||||
response: octokitResponse,
|
|
||||||
request: requestOptions
|
|
||||||
});
|
|
||||||
}
|
|
||||||
octokitResponse.data = parseSuccessResponseBody ? await getResponseData(fetchResponse) : fetchResponse.body;
|
|
||||||
return octokitResponse;
|
|
||||||
}
|
|
||||||
async function getResponseData(response) {
|
|
||||||
const contentType = response.headers.get("content-type");
|
|
||||||
if (!contentType) {
|
|
||||||
return response.text().catch(() => "");
|
|
||||||
}
|
|
||||||
const mimetype = (0,fast_content_type_parse/* safeParse */.xL)(contentType);
|
|
||||||
if (isJSONResponse(mimetype)) {
|
|
||||||
let text = "";
|
|
||||||
try {
|
|
||||||
text = await response.text();
|
|
||||||
return JSON.parse(text);
|
|
||||||
} catch (err) {
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
} else if (mimetype.type.startsWith("text/") || mimetype.parameters.charset?.toLowerCase() === "utf-8") {
|
|
||||||
return response.text().catch(() => "");
|
|
||||||
} else {
|
|
||||||
return response.arrayBuffer().catch(() => new ArrayBuffer(0));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function isJSONResponse(mimetype) {
|
|
||||||
return mimetype.type === "application/json" || mimetype.type === "application/scim+json";
|
|
||||||
}
|
|
||||||
function toErrorMessage(data) {
|
|
||||||
if (typeof data === "string") {
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
if (data instanceof ArrayBuffer) {
|
|
||||||
return "Unknown error";
|
|
||||||
}
|
|
||||||
if ("message" in data) {
|
|
||||||
const suffix = "documentation_url" in data ? ` - ${data.documentation_url}` : "";
|
|
||||||
return Array.isArray(data.errors) ? `${data.message}: ${data.errors.map((v) => JSON.stringify(v)).join(", ")}${suffix}` : `${data.message}${suffix}`;
|
|
||||||
}
|
|
||||||
return `Unknown error: ${JSON.stringify(data)}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/with-defaults.js
|
|
||||||
function dist_bundle_withDefaults(oldEndpoint, newDefaults) {
|
|
||||||
const endpoint2 = oldEndpoint.defaults(newDefaults);
|
|
||||||
const newApi = function(route, parameters) {
|
|
||||||
const endpointOptions = endpoint2.merge(route, parameters);
|
|
||||||
if (!endpointOptions.request || !endpointOptions.request.hook) {
|
|
||||||
return fetchWrapper(endpoint2.parse(endpointOptions));
|
|
||||||
}
|
|
||||||
const request2 = (route2, parameters2) => {
|
|
||||||
return fetchWrapper(
|
|
||||||
endpoint2.parse(endpoint2.merge(route2, parameters2))
|
|
||||||
);
|
|
||||||
};
|
|
||||||
Object.assign(request2, {
|
|
||||||
endpoint: endpoint2,
|
|
||||||
defaults: dist_bundle_withDefaults.bind(null, endpoint2)
|
|
||||||
});
|
|
||||||
return endpointOptions.request.hook(request2, endpointOptions);
|
|
||||||
};
|
|
||||||
return Object.assign(newApi, {
|
|
||||||
endpoint: endpoint2,
|
|
||||||
defaults: dist_bundle_withDefaults.bind(null, endpoint2)
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/index.js
|
|
||||||
var request = dist_bundle_withDefaults(endpoint, defaults_default);
|
|
||||||
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/graphql/dist-bundle/index.js
|
|
||||||
// pkg/dist-src/index.js
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// pkg/dist-src/version.js
|
|
||||||
var graphql_dist_bundle_VERSION = "0.0.0-development";
|
|
||||||
|
|
||||||
// pkg/dist-src/with-defaults.js
|
|
||||||
|
|
||||||
|
|
||||||
// pkg/dist-src/graphql.js
|
|
||||||
|
|
||||||
|
|
||||||
// pkg/dist-src/error.js
|
|
||||||
function _buildMessageForResponseErrors(data) {
|
|
||||||
return `Request failed due to following response errors:
|
|
||||||
` + data.errors.map((e) => ` - ${e.message}`).join("\n");
|
|
||||||
}
|
|
||||||
var GraphqlResponseError = class extends Error {
|
|
||||||
constructor(request2, headers, response) {
|
|
||||||
super(_buildMessageForResponseErrors(response));
|
|
||||||
this.request = request2;
|
|
||||||
this.headers = headers;
|
|
||||||
this.response = response;
|
|
||||||
this.errors = response.errors;
|
|
||||||
this.data = response.data;
|
|
||||||
if (Error.captureStackTrace) {
|
|
||||||
Error.captureStackTrace(this, this.constructor);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
name = "GraphqlResponseError";
|
|
||||||
errors;
|
|
||||||
data;
|
|
||||||
};
|
|
||||||
|
|
||||||
// pkg/dist-src/graphql.js
|
|
||||||
var NON_VARIABLE_OPTIONS = [
|
|
||||||
"method",
|
|
||||||
"baseUrl",
|
|
||||||
"url",
|
|
||||||
"headers",
|
|
||||||
"request",
|
|
||||||
"query",
|
|
||||||
"mediaType",
|
|
||||||
"operationName"
|
|
||||||
];
|
|
||||||
var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"];
|
|
||||||
var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/;
|
|
||||||
function graphql(request2, query, options) {
|
|
||||||
if (options) {
|
|
||||||
if (typeof query === "string" && "query" in options) {
|
|
||||||
return Promise.reject(
|
|
||||||
new Error(`[@octokit/graphql] "query" cannot be used as variable name`)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
for (const key in options) {
|
|
||||||
if (!FORBIDDEN_VARIABLE_OPTIONS.includes(key)) continue;
|
|
||||||
return Promise.reject(
|
|
||||||
new Error(
|
|
||||||
`[@octokit/graphql] "${key}" cannot be used as variable name`
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const parsedOptions = typeof query === "string" ? Object.assign({ query }, options) : query;
|
|
||||||
const requestOptions = Object.keys(
|
|
||||||
parsedOptions
|
|
||||||
).reduce((result, key) => {
|
|
||||||
if (NON_VARIABLE_OPTIONS.includes(key)) {
|
|
||||||
result[key] = parsedOptions[key];
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
if (!result.variables) {
|
|
||||||
result.variables = {};
|
|
||||||
}
|
|
||||||
result.variables[key] = parsedOptions[key];
|
|
||||||
return result;
|
|
||||||
}, {});
|
|
||||||
const baseUrl = parsedOptions.baseUrl || request2.endpoint.DEFAULTS.baseUrl;
|
|
||||||
if (GHES_V3_SUFFIX_REGEX.test(baseUrl)) {
|
|
||||||
requestOptions.url = baseUrl.replace(GHES_V3_SUFFIX_REGEX, "/api/graphql");
|
|
||||||
}
|
|
||||||
return request2(requestOptions).then((response) => {
|
|
||||||
if (response.data.errors) {
|
|
||||||
const headers = {};
|
|
||||||
for (const key of Object.keys(response.headers)) {
|
|
||||||
headers[key] = response.headers[key];
|
|
||||||
}
|
|
||||||
throw new GraphqlResponseError(
|
|
||||||
requestOptions,
|
|
||||||
headers,
|
|
||||||
response.data
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return response.data.data;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/with-defaults.js
|
|
||||||
function graphql_dist_bundle_withDefaults(request2, newDefaults) {
|
|
||||||
const newRequest = request2.defaults(newDefaults);
|
|
||||||
const newApi = (query, options) => {
|
|
||||||
return graphql(newRequest, query, options);
|
|
||||||
};
|
|
||||||
return Object.assign(newApi, {
|
|
||||||
defaults: graphql_dist_bundle_withDefaults.bind(null, newRequest),
|
|
||||||
endpoint: newRequest.endpoint
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/index.js
|
|
||||||
var graphql2 = graphql_dist_bundle_withDefaults(request, {
|
|
||||||
headers: {
|
|
||||||
"user-agent": `octokit-graphql.js/${graphql_dist_bundle_VERSION} ${getUserAgent()}`
|
|
||||||
},
|
|
||||||
method: "POST",
|
|
||||||
url: "/graphql"
|
|
||||||
});
|
|
||||||
function withCustomRequest(customRequest) {
|
|
||||||
return graphql_dist_bundle_withDefaults(customRequest, {
|
|
||||||
method: "POST",
|
|
||||||
url: "/graphql"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/auth-token/dist-bundle/index.js
|
|
||||||
// pkg/dist-src/is-jwt.js
|
|
||||||
var b64url = "(?:[a-zA-Z0-9_-]+)";
|
|
||||||
var sep = "\\.";
|
|
||||||
var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`);
|
|
||||||
var isJWT = jwtRE.test.bind(jwtRE);
|
|
||||||
|
|
||||||
// pkg/dist-src/auth.js
|
|
||||||
async function auth(token) {
|
|
||||||
const isApp = isJWT(token);
|
|
||||||
const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_");
|
|
||||||
const isUserToServer = token.startsWith("ghu_");
|
|
||||||
const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth";
|
|
||||||
return {
|
|
||||||
type: "token",
|
|
||||||
token,
|
|
||||||
tokenType
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/with-authorization-prefix.js
|
|
||||||
function withAuthorizationPrefix(token) {
|
|
||||||
if (token.split(/\./).length === 3) {
|
|
||||||
return `bearer ${token}`;
|
|
||||||
}
|
|
||||||
return `token ${token}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/hook.js
|
|
||||||
async function hook(token, request, route, parameters) {
|
|
||||||
const endpoint = request.endpoint.merge(
|
|
||||||
route,
|
|
||||||
parameters
|
|
||||||
);
|
|
||||||
endpoint.headers.authorization = withAuthorizationPrefix(token);
|
|
||||||
return request(endpoint);
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/index.js
|
|
||||||
var createTokenAuth = function createTokenAuth2(token) {
|
|
||||||
if (!token) {
|
|
||||||
throw new Error("[@octokit/auth-token] No token passed to createTokenAuth");
|
|
||||||
}
|
|
||||||
if (typeof token !== "string") {
|
|
||||||
throw new Error(
|
|
||||||
"[@octokit/auth-token] Token passed to createTokenAuth is not a string"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
token = token.replace(/^(token|bearer) +/i, "");
|
|
||||||
return Object.assign(auth.bind(null, token), {
|
|
||||||
hook: hook.bind(null, token)
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/core/dist-src/version.js
|
|
||||||
const version_VERSION = "7.0.5";
|
|
||||||
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/core/dist-src/index.js
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const noop = () => {
|
|
||||||
};
|
|
||||||
const consoleWarn = console.warn.bind(console);
|
|
||||||
const consoleError = console.error.bind(console);
|
|
||||||
function createLogger(logger = {}) {
|
|
||||||
if (typeof logger.debug !== "function") {
|
|
||||||
logger.debug = noop;
|
|
||||||
}
|
|
||||||
if (typeof logger.info !== "function") {
|
|
||||||
logger.info = noop;
|
|
||||||
}
|
|
||||||
if (typeof logger.warn !== "function") {
|
|
||||||
logger.warn = consoleWarn;
|
|
||||||
}
|
|
||||||
if (typeof logger.error !== "function") {
|
|
||||||
logger.error = consoleError;
|
|
||||||
}
|
|
||||||
return logger;
|
|
||||||
}
|
|
||||||
const userAgentTrail = `octokit-core.js/${version_VERSION} ${getUserAgent()}`;
|
|
||||||
class Octokit {
|
|
||||||
static VERSION = version_VERSION;
|
|
||||||
static defaults(defaults) {
|
|
||||||
const OctokitWithDefaults = class extends this {
|
|
||||||
constructor(...args) {
|
|
||||||
const options = args[0] || {};
|
|
||||||
if (typeof defaults === "function") {
|
|
||||||
super(defaults(options));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
super(
|
|
||||||
Object.assign(
|
|
||||||
{},
|
|
||||||
defaults,
|
|
||||||
options,
|
|
||||||
options.userAgent && defaults.userAgent ? {
|
|
||||||
userAgent: `${options.userAgent} ${defaults.userAgent}`
|
|
||||||
} : null
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
return OctokitWithDefaults;
|
|
||||||
}
|
|
||||||
static plugins = [];
|
|
||||||
/**
|
|
||||||
* Attach a plugin (or many) to your Octokit instance.
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* const API = Octokit.plugin(plugin1, plugin2, plugin3, ...)
|
|
||||||
*/
|
|
||||||
static plugin(...newPlugins) {
|
|
||||||
const currentPlugins = this.plugins;
|
|
||||||
const NewOctokit = class extends this {
|
|
||||||
static plugins = currentPlugins.concat(
|
|
||||||
newPlugins.filter((plugin) => !currentPlugins.includes(plugin))
|
|
||||||
);
|
|
||||||
};
|
|
||||||
return NewOctokit;
|
|
||||||
}
|
|
||||||
constructor(options = {}) {
|
|
||||||
const hook = new before_after_hook.Collection();
|
|
||||||
const requestDefaults = {
|
|
||||||
baseUrl: request.endpoint.DEFAULTS.baseUrl,
|
|
||||||
headers: {},
|
|
||||||
request: Object.assign({}, options.request, {
|
|
||||||
// @ts-ignore internal usage only, no need to type
|
|
||||||
hook: hook.bind(null, "request")
|
|
||||||
}),
|
|
||||||
mediaType: {
|
|
||||||
previews: [],
|
|
||||||
format: ""
|
|
||||||
}
|
|
||||||
};
|
|
||||||
requestDefaults.headers["user-agent"] = options.userAgent ? `${options.userAgent} ${userAgentTrail}` : userAgentTrail;
|
|
||||||
if (options.baseUrl) {
|
|
||||||
requestDefaults.baseUrl = options.baseUrl;
|
|
||||||
}
|
|
||||||
if (options.previews) {
|
|
||||||
requestDefaults.mediaType.previews = options.previews;
|
|
||||||
}
|
|
||||||
if (options.timeZone) {
|
|
||||||
requestDefaults.headers["time-zone"] = options.timeZone;
|
|
||||||
}
|
|
||||||
this.request = request.defaults(requestDefaults);
|
|
||||||
this.graphql = withCustomRequest(this.request).defaults(requestDefaults);
|
|
||||||
this.log = createLogger(options.log);
|
|
||||||
this.hook = hook;
|
|
||||||
if (!options.authStrategy) {
|
|
||||||
if (!options.auth) {
|
|
||||||
this.auth = async () => ({
|
|
||||||
type: "unauthenticated"
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
const auth = createTokenAuth(options.auth);
|
|
||||||
hook.wrap("request", auth.hook);
|
|
||||||
this.auth = auth;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
const { authStrategy, ...otherOptions } = options;
|
|
||||||
const auth = authStrategy(
|
|
||||||
Object.assign(
|
|
||||||
{
|
|
||||||
request: this.request,
|
|
||||||
log: this.log,
|
|
||||||
// we pass the current octokit instance as well as its constructor options
|
|
||||||
// to allow for authentication strategies that return a new octokit instance
|
|
||||||
// that shares the same internal state as the current one. The original
|
|
||||||
// requirement for this was the "event-octokit" authentication strategy
|
|
||||||
// of https://github.com/probot/octokit-auth-probot.
|
|
||||||
octokit: this,
|
|
||||||
octokitOptions: otherOptions
|
|
||||||
},
|
|
||||||
options.auth
|
|
||||||
)
|
|
||||||
);
|
|
||||||
hook.wrap("request", auth.hook);
|
|
||||||
this.auth = auth;
|
|
||||||
}
|
|
||||||
const classConstructor = this.constructor;
|
|
||||||
for (let i = 0; i < classConstructor.plugins.length; ++i) {
|
|
||||||
Object.assign(this, classConstructor.plugins[i](this, options));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// assigned during constructor
|
|
||||||
request;
|
|
||||||
graphql;
|
|
||||||
log;
|
|
||||||
hook;
|
|
||||||
// TODO: type `octokit.auth` based on passed options.authStrategy
|
|
||||||
auth;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 3779:
|
|
||||||
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __nccwpck_require__) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
__nccwpck_require__.r(__webpack_exports__);
|
|
||||||
/* harmony export */ __nccwpck_require__.d(__webpack_exports__, {
|
|
||||||
/* harmony export */ composePaginateRest: () => (/* binding */ composePaginateRest),
|
|
||||||
/* harmony export */ isPaginatingEndpoint: () => (/* binding */ isPaginatingEndpoint),
|
|
||||||
/* harmony export */ paginateRest: () => (/* binding */ paginateRest),
|
|
||||||
/* harmony export */ paginatingEndpoints: () => (/* binding */ paginatingEndpoints)
|
|
||||||
/* harmony export */ });
|
|
||||||
// pkg/dist-src/version.js
|
|
||||||
var VERSION = "0.0.0-development";
|
|
||||||
|
|
||||||
// pkg/dist-src/normalize-paginated-list-response.js
|
|
||||||
function normalizePaginatedListResponse(response) {
|
|
||||||
if (!response.data) {
|
|
||||||
return {
|
|
||||||
...response,
|
|
||||||
data: []
|
|
||||||
};
|
|
||||||
}
|
|
||||||
const responseNeedsNormalization = ("total_count" in response.data || "total_commits" in response.data) && !("url" in response.data);
|
|
||||||
if (!responseNeedsNormalization) return response;
|
|
||||||
const incompleteResults = response.data.incomplete_results;
|
|
||||||
const repositorySelection = response.data.repository_selection;
|
|
||||||
const totalCount = response.data.total_count;
|
|
||||||
const totalCommits = response.data.total_commits;
|
|
||||||
delete response.data.incomplete_results;
|
|
||||||
delete response.data.repository_selection;
|
|
||||||
delete response.data.total_count;
|
|
||||||
delete response.data.total_commits;
|
|
||||||
const namespaceKey = Object.keys(response.data)[0];
|
|
||||||
const data = response.data[namespaceKey];
|
|
||||||
response.data = data;
|
|
||||||
if (typeof incompleteResults !== "undefined") {
|
|
||||||
response.data.incomplete_results = incompleteResults;
|
|
||||||
}
|
|
||||||
if (typeof repositorySelection !== "undefined") {
|
|
||||||
response.data.repository_selection = repositorySelection;
|
|
||||||
}
|
|
||||||
response.data.total_count = totalCount;
|
|
||||||
response.data.total_commits = totalCommits;
|
|
||||||
return response;
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/iterator.js
|
|
||||||
function iterator(octokit, route, parameters) {
|
|
||||||
const options = typeof route === "function" ? route.endpoint(parameters) : octokit.request.endpoint(route, parameters);
|
|
||||||
const requestMethod = typeof route === "function" ? route : octokit.request;
|
|
||||||
const method = options.method;
|
|
||||||
const headers = options.headers;
|
|
||||||
let url = options.url;
|
|
||||||
return {
|
|
||||||
[Symbol.asyncIterator]: () => ({
|
|
||||||
async next() {
|
|
||||||
if (!url) return { done: true };
|
|
||||||
try {
|
|
||||||
const response = await requestMethod({ method, url, headers });
|
|
||||||
const normalizedResponse = normalizePaginatedListResponse(response);
|
|
||||||
url = ((normalizedResponse.headers.link || "").match(
|
|
||||||
/<([^<>]+)>;\s*rel="next"/
|
|
||||||
) || [])[1];
|
|
||||||
if (!url && "total_commits" in normalizedResponse.data) {
|
|
||||||
const parsedUrl = new URL(normalizedResponse.url);
|
|
||||||
const params = parsedUrl.searchParams;
|
|
||||||
const page = parseInt(params.get("page") || "1", 10);
|
|
||||||
const per_page = parseInt(params.get("per_page") || "250", 10);
|
|
||||||
if (page * per_page < normalizedResponse.data.total_commits) {
|
|
||||||
params.set("page", String(page + 1));
|
|
||||||
url = parsedUrl.toString();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return { value: normalizedResponse };
|
|
||||||
} catch (error) {
|
|
||||||
if (error.status !== 409) throw error;
|
|
||||||
url = "";
|
|
||||||
return {
|
|
||||||
value: {
|
|
||||||
status: 200,
|
|
||||||
headers: {},
|
|
||||||
data: []
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/paginate.js
|
|
||||||
function paginate(octokit, route, parameters, mapFn) {
|
|
||||||
if (typeof parameters === "function") {
|
|
||||||
mapFn = parameters;
|
|
||||||
parameters = void 0;
|
|
||||||
}
|
|
||||||
return gather(
|
|
||||||
octokit,
|
|
||||||
[],
|
|
||||||
iterator(octokit, route, parameters)[Symbol.asyncIterator](),
|
|
||||||
mapFn
|
|
||||||
);
|
|
||||||
}
|
|
||||||
function gather(octokit, results, iterator2, mapFn) {
|
|
||||||
return iterator2.next().then((result) => {
|
|
||||||
if (result.done) {
|
|
||||||
return results;
|
|
||||||
}
|
|
||||||
let earlyExit = false;
|
|
||||||
function done() {
|
|
||||||
earlyExit = true;
|
|
||||||
}
|
|
||||||
results = results.concat(
|
|
||||||
mapFn ? mapFn(result.value, done) : result.value.data
|
|
||||||
);
|
|
||||||
if (earlyExit) {
|
|
||||||
return results;
|
|
||||||
}
|
|
||||||
return gather(octokit, results, iterator2, mapFn);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/compose-paginate.js
|
|
||||||
var composePaginateRest = Object.assign(paginate, {
|
|
||||||
iterator
|
|
||||||
});
|
|
||||||
|
|
||||||
// pkg/dist-src/generated/paginating-endpoints.js
|
|
||||||
var paginatingEndpoints = [
|
|
||||||
"GET /advisories",
|
|
||||||
"GET /app/hook/deliveries",
|
|
||||||
"GET /app/installation-requests",
|
|
||||||
"GET /app/installations",
|
|
||||||
"GET /assignments/{assignment_id}/accepted_assignments",
|
|
||||||
"GET /classrooms",
|
|
||||||
"GET /classrooms/{classroom_id}/assignments",
|
|
||||||
"GET /enterprises/{enterprise}/code-security/configurations",
|
|
||||||
"GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}/repositories",
|
|
||||||
"GET /enterprises/{enterprise}/dependabot/alerts",
|
|
||||||
"GET /enterprises/{enterprise}/secret-scanning/alerts",
|
|
||||||
"GET /events",
|
|
||||||
"GET /gists",
|
|
||||||
"GET /gists/public",
|
|
||||||
"GET /gists/starred",
|
|
||||||
"GET /gists/{gist_id}/comments",
|
|
||||||
"GET /gists/{gist_id}/commits",
|
|
||||||
"GET /gists/{gist_id}/forks",
|
|
||||||
"GET /installation/repositories",
|
|
||||||
"GET /issues",
|
|
||||||
"GET /licenses",
|
|
||||||
"GET /marketplace_listing/plans",
|
|
||||||
"GET /marketplace_listing/plans/{plan_id}/accounts",
|
|
||||||
"GET /marketplace_listing/stubbed/plans",
|
|
||||||
"GET /marketplace_listing/stubbed/plans/{plan_id}/accounts",
|
|
||||||
"GET /networks/{owner}/{repo}/events",
|
|
||||||
"GET /notifications",
|
|
||||||
"GET /organizations",
|
|
||||||
"GET /organizations/{org}/dependabot/repository-access",
|
|
||||||
"GET /orgs/{org}/actions/cache/usage-by-repository",
|
|
||||||
"GET /orgs/{org}/actions/hosted-runners",
|
|
||||||
"GET /orgs/{org}/actions/permissions/repositories",
|
|
||||||
"GET /orgs/{org}/actions/permissions/self-hosted-runners/repositories",
|
|
||||||
"GET /orgs/{org}/actions/runner-groups",
|
|
||||||
"GET /orgs/{org}/actions/runner-groups/{runner_group_id}/hosted-runners",
|
|
||||||
"GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories",
|
|
||||||
"GET /orgs/{org}/actions/runner-groups/{runner_group_id}/runners",
|
|
||||||
"GET /orgs/{org}/actions/runners",
|
|
||||||
"GET /orgs/{org}/actions/secrets",
|
|
||||||
"GET /orgs/{org}/actions/secrets/{secret_name}/repositories",
|
|
||||||
"GET /orgs/{org}/actions/variables",
|
|
||||||
"GET /orgs/{org}/actions/variables/{name}/repositories",
|
|
||||||
"GET /orgs/{org}/attestations/{subject_digest}",
|
|
||||||
"GET /orgs/{org}/blocks",
|
|
||||||
"GET /orgs/{org}/campaigns",
|
|
||||||
"GET /orgs/{org}/code-scanning/alerts",
|
|
||||||
"GET /orgs/{org}/code-security/configurations",
|
|
||||||
"GET /orgs/{org}/code-security/configurations/{configuration_id}/repositories",
|
|
||||||
"GET /orgs/{org}/codespaces",
|
|
||||||
"GET /orgs/{org}/codespaces/secrets",
|
|
||||||
"GET /orgs/{org}/codespaces/secrets/{secret_name}/repositories",
|
|
||||||
"GET /orgs/{org}/copilot/billing/seats",
|
|
||||||
"GET /orgs/{org}/copilot/metrics",
|
|
||||||
"GET /orgs/{org}/dependabot/alerts",
|
|
||||||
"GET /orgs/{org}/dependabot/secrets",
|
|
||||||
"GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories",
|
|
||||||
"GET /orgs/{org}/events",
|
|
||||||
"GET /orgs/{org}/failed_invitations",
|
|
||||||
"GET /orgs/{org}/hooks",
|
|
||||||
"GET /orgs/{org}/hooks/{hook_id}/deliveries",
|
|
||||||
"GET /orgs/{org}/insights/api/route-stats/{actor_type}/{actor_id}",
|
|
||||||
"GET /orgs/{org}/insights/api/subject-stats",
|
|
||||||
"GET /orgs/{org}/insights/api/user-stats/{user_id}",
|
|
||||||
"GET /orgs/{org}/installations",
|
|
||||||
"GET /orgs/{org}/invitations",
|
|
||||||
"GET /orgs/{org}/invitations/{invitation_id}/teams",
|
|
||||||
"GET /orgs/{org}/issues",
|
|
||||||
"GET /orgs/{org}/members",
|
|
||||||
"GET /orgs/{org}/members/{username}/codespaces",
|
|
||||||
"GET /orgs/{org}/migrations",
|
|
||||||
"GET /orgs/{org}/migrations/{migration_id}/repositories",
|
|
||||||
"GET /orgs/{org}/organization-roles/{role_id}/teams",
|
|
||||||
"GET /orgs/{org}/organization-roles/{role_id}/users",
|
|
||||||
"GET /orgs/{org}/outside_collaborators",
|
|
||||||
"GET /orgs/{org}/packages",
|
|
||||||
"GET /orgs/{org}/packages/{package_type}/{package_name}/versions",
|
|
||||||
"GET /orgs/{org}/personal-access-token-requests",
|
|
||||||
"GET /orgs/{org}/personal-access-token-requests/{pat_request_id}/repositories",
|
|
||||||
"GET /orgs/{org}/personal-access-tokens",
|
|
||||||
"GET /orgs/{org}/personal-access-tokens/{pat_id}/repositories",
|
|
||||||
"GET /orgs/{org}/private-registries",
|
|
||||||
"GET /orgs/{org}/projects",
|
|
||||||
"GET /orgs/{org}/projectsV2",
|
|
||||||
"GET /orgs/{org}/projectsV2/{project_number}/fields",
|
|
||||||
"GET /orgs/{org}/projectsV2/{project_number}/items",
|
|
||||||
"GET /orgs/{org}/properties/values",
|
|
||||||
"GET /orgs/{org}/public_members",
|
|
||||||
"GET /orgs/{org}/repos",
|
|
||||||
"GET /orgs/{org}/rulesets",
|
|
||||||
"GET /orgs/{org}/rulesets/rule-suites",
|
|
||||||
"GET /orgs/{org}/rulesets/{ruleset_id}/history",
|
|
||||||
"GET /orgs/{org}/secret-scanning/alerts",
|
|
||||||
"GET /orgs/{org}/security-advisories",
|
|
||||||
"GET /orgs/{org}/settings/network-configurations",
|
|
||||||
"GET /orgs/{org}/team/{team_slug}/copilot/metrics",
|
|
||||||
"GET /orgs/{org}/teams",
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/discussions",
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments",
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions",
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions",
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/invitations",
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/members",
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/projects",
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/repos",
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/teams",
|
|
||||||
"GET /projects/{project_id}/collaborators",
|
|
||||||
"GET /projects/{project_id}/columns",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/artifacts",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/caches",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/organization-secrets",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/organization-variables",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runners",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/secrets",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/variables",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/workflows",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs",
|
|
||||||
"GET /repos/{owner}/{repo}/activity",
|
|
||||||
"GET /repos/{owner}/{repo}/assignees",
|
|
||||||
"GET /repos/{owner}/{repo}/attestations/{subject_digest}",
|
|
||||||
"GET /repos/{owner}/{repo}/branches",
|
|
||||||
"GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations",
|
|
||||||
"GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs",
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/alerts",
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances",
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/analyses",
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces",
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces/devcontainers",
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces/secrets",
|
|
||||||
"GET /repos/{owner}/{repo}/collaborators",
|
|
||||||
"GET /repos/{owner}/{repo}/comments",
|
|
||||||
"GET /repos/{owner}/{repo}/comments/{comment_id}/reactions",
|
|
||||||
"GET /repos/{owner}/{repo}/commits",
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{commit_sha}/comments",
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls",
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{ref}/check-runs",
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{ref}/check-suites",
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{ref}/status",
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{ref}/statuses",
|
|
||||||
"GET /repos/{owner}/{repo}/compare/{basehead}",
|
|
||||||
"GET /repos/{owner}/{repo}/compare/{base}...{head}",
|
|
||||||
"GET /repos/{owner}/{repo}/contributors",
|
|
||||||
"GET /repos/{owner}/{repo}/dependabot/alerts",
|
|
||||||
"GET /repos/{owner}/{repo}/dependabot/secrets",
|
|
||||||
"GET /repos/{owner}/{repo}/deployments",
|
|
||||||
"GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses",
|
|
||||||
"GET /repos/{owner}/{repo}/environments",
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies",
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/apps",
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/secrets",
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/variables",
|
|
||||||
"GET /repos/{owner}/{repo}/events",
|
|
||||||
"GET /repos/{owner}/{repo}/forks",
|
|
||||||
"GET /repos/{owner}/{repo}/hooks",
|
|
||||||
"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries",
|
|
||||||
"GET /repos/{owner}/{repo}/invitations",
|
|
||||||
"GET /repos/{owner}/{repo}/issues",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/comments",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/events",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/comments",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocked_by",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocking",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/events",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/labels",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/reactions",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/sub_issues",
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/timeline",
|
|
||||||
"GET /repos/{owner}/{repo}/keys",
|
|
||||||
"GET /repos/{owner}/{repo}/labels",
|
|
||||||
"GET /repos/{owner}/{repo}/milestones",
|
|
||||||
"GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels",
|
|
||||||
"GET /repos/{owner}/{repo}/notifications",
|
|
||||||
"GET /repos/{owner}/{repo}/pages/builds",
|
|
||||||
"GET /repos/{owner}/{repo}/projects",
|
|
||||||
"GET /repos/{owner}/{repo}/pulls",
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/comments",
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions",
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/{pull_number}/comments",
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/{pull_number}/commits",
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/{pull_number}/files",
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews",
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments",
|
|
||||||
"GET /repos/{owner}/{repo}/releases",
|
|
||||||
"GET /repos/{owner}/{repo}/releases/{release_id}/assets",
|
|
||||||
"GET /repos/{owner}/{repo}/releases/{release_id}/reactions",
|
|
||||||
"GET /repos/{owner}/{repo}/rules/branches/{branch}",
|
|
||||||
"GET /repos/{owner}/{repo}/rulesets",
|
|
||||||
"GET /repos/{owner}/{repo}/rulesets/rule-suites",
|
|
||||||
"GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history",
|
|
||||||
"GET /repos/{owner}/{repo}/secret-scanning/alerts",
|
|
||||||
"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations",
|
|
||||||
"GET /repos/{owner}/{repo}/security-advisories",
|
|
||||||
"GET /repos/{owner}/{repo}/stargazers",
|
|
||||||
"GET /repos/{owner}/{repo}/subscribers",
|
|
||||||
"GET /repos/{owner}/{repo}/tags",
|
|
||||||
"GET /repos/{owner}/{repo}/teams",
|
|
||||||
"GET /repos/{owner}/{repo}/topics",
|
|
||||||
"GET /repositories",
|
|
||||||
"GET /search/code",
|
|
||||||
"GET /search/commits",
|
|
||||||
"GET /search/issues",
|
|
||||||
"GET /search/labels",
|
|
||||||
"GET /search/repositories",
|
|
||||||
"GET /search/topics",
|
|
||||||
"GET /search/users",
|
|
||||||
"GET /teams/{team_id}/discussions",
|
|
||||||
"GET /teams/{team_id}/discussions/{discussion_number}/comments",
|
|
||||||
"GET /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions",
|
|
||||||
"GET /teams/{team_id}/discussions/{discussion_number}/reactions",
|
|
||||||
"GET /teams/{team_id}/invitations",
|
|
||||||
"GET /teams/{team_id}/members",
|
|
||||||
"GET /teams/{team_id}/projects",
|
|
||||||
"GET /teams/{team_id}/repos",
|
|
||||||
"GET /teams/{team_id}/teams",
|
|
||||||
"GET /user/blocks",
|
|
||||||
"GET /user/codespaces",
|
|
||||||
"GET /user/codespaces/secrets",
|
|
||||||
"GET /user/emails",
|
|
||||||
"GET /user/followers",
|
|
||||||
"GET /user/following",
|
|
||||||
"GET /user/gpg_keys",
|
|
||||||
"GET /user/installations",
|
|
||||||
"GET /user/installations/{installation_id}/repositories",
|
|
||||||
"GET /user/issues",
|
|
||||||
"GET /user/keys",
|
|
||||||
"GET /user/marketplace_purchases",
|
|
||||||
"GET /user/marketplace_purchases/stubbed",
|
|
||||||
"GET /user/memberships/orgs",
|
|
||||||
"GET /user/migrations",
|
|
||||||
"GET /user/migrations/{migration_id}/repositories",
|
|
||||||
"GET /user/orgs",
|
|
||||||
"GET /user/packages",
|
|
||||||
"GET /user/packages/{package_type}/{package_name}/versions",
|
|
||||||
"GET /user/public_emails",
|
|
||||||
"GET /user/repos",
|
|
||||||
"GET /user/repository_invitations",
|
|
||||||
"GET /user/social_accounts",
|
|
||||||
"GET /user/ssh_signing_keys",
|
|
||||||
"GET /user/starred",
|
|
||||||
"GET /user/subscriptions",
|
|
||||||
"GET /user/teams",
|
|
||||||
"GET /users",
|
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/fields",
|
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/items",
|
|
||||||
"GET /users/{username}/attestations/{subject_digest}",
|
|
||||||
"GET /users/{username}/events",
|
|
||||||
"GET /users/{username}/events/orgs/{org}",
|
|
||||||
"GET /users/{username}/events/public",
|
|
||||||
"GET /users/{username}/followers",
|
|
||||||
"GET /users/{username}/following",
|
|
||||||
"GET /users/{username}/gists",
|
|
||||||
"GET /users/{username}/gpg_keys",
|
|
||||||
"GET /users/{username}/keys",
|
|
||||||
"GET /users/{username}/orgs",
|
|
||||||
"GET /users/{username}/packages",
|
|
||||||
"GET /users/{username}/projects",
|
|
||||||
"GET /users/{username}/projectsV2",
|
|
||||||
"GET /users/{username}/received_events",
|
|
||||||
"GET /users/{username}/received_events/public",
|
|
||||||
"GET /users/{username}/repos",
|
|
||||||
"GET /users/{username}/social_accounts",
|
|
||||||
"GET /users/{username}/ssh_signing_keys",
|
|
||||||
"GET /users/{username}/starred",
|
|
||||||
"GET /users/{username}/subscriptions"
|
|
||||||
];
|
|
||||||
|
|
||||||
// pkg/dist-src/paginating-endpoints.js
|
|
||||||
function isPaginatingEndpoint(arg) {
|
|
||||||
if (typeof arg === "string") {
|
|
||||||
return paginatingEndpoints.includes(arg);
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// pkg/dist-src/index.js
|
|
||||||
function paginateRest(octokit) {
|
|
||||||
return {
|
|
||||||
paginate: Object.assign(paginate.bind(null, octokit), {
|
|
||||||
iterator: iterator.bind(null, octokit)
|
|
||||||
})
|
|
||||||
};
|
|
||||||
}
|
|
||||||
paginateRest.VERSION = VERSION;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 9210:
|
|
||||||
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __nccwpck_require__) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
// ESM COMPAT FLAG
|
|
||||||
__nccwpck_require__.r(__webpack_exports__);
|
|
||||||
|
|
||||||
// EXPORTS
|
|
||||||
__nccwpck_require__.d(__webpack_exports__, {
|
|
||||||
legacyRestEndpointMethods: () => (/* binding */ legacyRestEndpointMethods),
|
|
||||||
restEndpointMethods: () => (/* binding */ restEndpointMethods)
|
|
||||||
});
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/version.js
|
|
||||||
const VERSION = "16.1.1";
|
|
||||||
|
|
||||||
//# sourceMappingURL=version.js.map
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/generated/endpoints.js
|
|
||||||
const Endpoints = {
|
|
||||||
actions: {
|
|
||||||
addCustomLabelsToSelfHostedRunnerForOrg: [
|
|
||||||
"POST /orgs/{org}/actions/runners/{runner_id}/labels"
|
|
||||||
],
|
|
||||||
addCustomLabelsToSelfHostedRunnerForRepo: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runners/{runner_id}/labels"
|
|
||||||
],
|
|
||||||
addRepoAccessToSelfHostedRunnerGroupInOrg: [
|
|
||||||
"PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
addSelectedRepoToOrgSecret: [
|
|
||||||
"PUT /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
addSelectedRepoToOrgVariable: [
|
|
||||||
"PUT /orgs/{org}/actions/variables/{name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
approveWorkflowRun: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/approve"
|
|
||||||
],
|
|
||||||
cancelWorkflowRun: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel"
|
|
||||||
],
|
|
||||||
createEnvironmentVariable: [
|
|
||||||
"POST /repos/{owner}/{repo}/environments/{environment_name}/variables"
|
|
||||||
],
|
|
||||||
createHostedRunnerForOrg: ["POST /orgs/{org}/actions/hosted-runners"],
|
|
||||||
createOrUpdateEnvironmentSecret: [
|
|
||||||
"PUT /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
createOrUpdateOrgSecret: ["PUT /orgs/{org}/actions/secrets/{secret_name}"],
|
|
||||||
createOrUpdateRepoSecret: [
|
|
||||||
"PUT /repos/{owner}/{repo}/actions/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
createOrgVariable: ["POST /orgs/{org}/actions/variables"],
|
|
||||||
createRegistrationTokenForOrg: [
|
|
||||||
"POST /orgs/{org}/actions/runners/registration-token"
|
|
||||||
],
|
|
||||||
createRegistrationTokenForRepo: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runners/registration-token"
|
|
||||||
],
|
|
||||||
createRemoveTokenForOrg: ["POST /orgs/{org}/actions/runners/remove-token"],
|
|
||||||
createRemoveTokenForRepo: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runners/remove-token"
|
|
||||||
],
|
|
||||||
createRepoVariable: ["POST /repos/{owner}/{repo}/actions/variables"],
|
|
||||||
createWorkflowDispatch: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches"
|
|
||||||
],
|
|
||||||
deleteActionsCacheById: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/actions/caches/{cache_id}"
|
|
||||||
],
|
|
||||||
deleteActionsCacheByKey: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/actions/caches{?key,ref}"
|
|
||||||
],
|
|
||||||
deleteArtifact: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"
|
|
||||||
],
|
|
||||||
deleteEnvironmentSecret: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
deleteEnvironmentVariable: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}"
|
|
||||||
],
|
|
||||||
deleteHostedRunnerForOrg: [
|
|
||||||
"DELETE /orgs/{org}/actions/hosted-runners/{hosted_runner_id}"
|
|
||||||
],
|
|
||||||
deleteOrgSecret: ["DELETE /orgs/{org}/actions/secrets/{secret_name}"],
|
|
||||||
deleteOrgVariable: ["DELETE /orgs/{org}/actions/variables/{name}"],
|
|
||||||
deleteRepoSecret: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/actions/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
deleteRepoVariable: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/actions/variables/{name}"
|
|
||||||
],
|
|
||||||
deleteSelfHostedRunnerFromOrg: [
|
|
||||||
"DELETE /orgs/{org}/actions/runners/{runner_id}"
|
|
||||||
],
|
|
||||||
deleteSelfHostedRunnerFromRepo: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}"
|
|
||||||
],
|
|
||||||
deleteWorkflowRun: ["DELETE /repos/{owner}/{repo}/actions/runs/{run_id}"],
|
|
||||||
deleteWorkflowRunLogs: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/actions/runs/{run_id}/logs"
|
|
||||||
],
|
|
||||||
disableSelectedRepositoryGithubActionsOrganization: [
|
|
||||||
"DELETE /orgs/{org}/actions/permissions/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
disableWorkflow: [
|
|
||||||
"PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable"
|
|
||||||
],
|
|
||||||
downloadArtifact: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}"
|
|
||||||
],
|
|
||||||
downloadJobLogsForWorkflowRun: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/jobs/{job_id}/logs"
|
|
||||||
],
|
|
||||||
downloadWorkflowRunAttemptLogs: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs"
|
|
||||||
],
|
|
||||||
downloadWorkflowRunLogs: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/logs"
|
|
||||||
],
|
|
||||||
enableSelectedRepositoryGithubActionsOrganization: [
|
|
||||||
"PUT /orgs/{org}/actions/permissions/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
enableWorkflow: [
|
|
||||||
"PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable"
|
|
||||||
],
|
|
||||||
forceCancelWorkflowRun: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/force-cancel"
|
|
||||||
],
|
|
||||||
generateRunnerJitconfigForOrg: [
|
|
||||||
"POST /orgs/{org}/actions/runners/generate-jitconfig"
|
|
||||||
],
|
|
||||||
generateRunnerJitconfigForRepo: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runners/generate-jitconfig"
|
|
||||||
],
|
|
||||||
getActionsCacheList: ["GET /repos/{owner}/{repo}/actions/caches"],
|
|
||||||
getActionsCacheUsage: ["GET /repos/{owner}/{repo}/actions/cache/usage"],
|
|
||||||
getActionsCacheUsageByRepoForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/cache/usage-by-repository"
|
|
||||||
],
|
|
||||||
getActionsCacheUsageForOrg: ["GET /orgs/{org}/actions/cache/usage"],
|
|
||||||
getAllowedActionsOrganization: [
|
|
||||||
"GET /orgs/{org}/actions/permissions/selected-actions"
|
|
||||||
],
|
|
||||||
getAllowedActionsRepository: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/permissions/selected-actions"
|
|
||||||
],
|
|
||||||
getArtifact: ["GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"],
|
|
||||||
getCustomOidcSubClaimForRepo: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/oidc/customization/sub"
|
|
||||||
],
|
|
||||||
getEnvironmentPublicKey: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/secrets/public-key"
|
|
||||||
],
|
|
||||||
getEnvironmentSecret: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
getEnvironmentVariable: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}"
|
|
||||||
],
|
|
||||||
getGithubActionsDefaultWorkflowPermissionsOrganization: [
|
|
||||||
"GET /orgs/{org}/actions/permissions/workflow"
|
|
||||||
],
|
|
||||||
getGithubActionsDefaultWorkflowPermissionsRepository: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/permissions/workflow"
|
|
||||||
],
|
|
||||||
getGithubActionsPermissionsOrganization: [
|
|
||||||
"GET /orgs/{org}/actions/permissions"
|
|
||||||
],
|
|
||||||
getGithubActionsPermissionsRepository: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/permissions"
|
|
||||||
],
|
|
||||||
getHostedRunnerForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/hosted-runners/{hosted_runner_id}"
|
|
||||||
],
|
|
||||||
getHostedRunnersGithubOwnedImagesForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/hosted-runners/images/github-owned"
|
|
||||||
],
|
|
||||||
getHostedRunnersLimitsForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/hosted-runners/limits"
|
|
||||||
],
|
|
||||||
getHostedRunnersMachineSpecsForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/hosted-runners/machine-sizes"
|
|
||||||
],
|
|
||||||
getHostedRunnersPartnerImagesForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/hosted-runners/images/partner"
|
|
||||||
],
|
|
||||||
getHostedRunnersPlatformsForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/hosted-runners/platforms"
|
|
||||||
],
|
|
||||||
getJobForWorkflowRun: ["GET /repos/{owner}/{repo}/actions/jobs/{job_id}"],
|
|
||||||
getOrgPublicKey: ["GET /orgs/{org}/actions/secrets/public-key"],
|
|
||||||
getOrgSecret: ["GET /orgs/{org}/actions/secrets/{secret_name}"],
|
|
||||||
getOrgVariable: ["GET /orgs/{org}/actions/variables/{name}"],
|
|
||||||
getPendingDeploymentsForRun: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments"
|
|
||||||
],
|
|
||||||
getRepoPermissions: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/permissions",
|
|
||||||
{},
|
|
||||||
{ renamed: ["actions", "getGithubActionsPermissionsRepository"] }
|
|
||||||
],
|
|
||||||
getRepoPublicKey: ["GET /repos/{owner}/{repo}/actions/secrets/public-key"],
|
|
||||||
getRepoSecret: ["GET /repos/{owner}/{repo}/actions/secrets/{secret_name}"],
|
|
||||||
getRepoVariable: ["GET /repos/{owner}/{repo}/actions/variables/{name}"],
|
|
||||||
getReviewsForRun: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/approvals"
|
|
||||||
],
|
|
||||||
getSelfHostedRunnerForOrg: ["GET /orgs/{org}/actions/runners/{runner_id}"],
|
|
||||||
getSelfHostedRunnerForRepo: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runners/{runner_id}"
|
|
||||||
],
|
|
||||||
getWorkflow: ["GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}"],
|
|
||||||
getWorkflowAccessToRepository: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/permissions/access"
|
|
||||||
],
|
|
||||||
getWorkflowRun: ["GET /repos/{owner}/{repo}/actions/runs/{run_id}"],
|
|
||||||
getWorkflowRunAttempt: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}"
|
|
||||||
],
|
|
||||||
getWorkflowRunUsage: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/timing"
|
|
||||||
],
|
|
||||||
getWorkflowUsage: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing"
|
|
||||||
],
|
|
||||||
listArtifactsForRepo: ["GET /repos/{owner}/{repo}/actions/artifacts"],
|
|
||||||
listEnvironmentSecrets: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/secrets"
|
|
||||||
],
|
|
||||||
listEnvironmentVariables: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/variables"
|
|
||||||
],
|
|
||||||
listGithubHostedRunnersInGroupForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/runner-groups/{runner_group_id}/hosted-runners"
|
|
||||||
],
|
|
||||||
listHostedRunnersForOrg: ["GET /orgs/{org}/actions/hosted-runners"],
|
|
||||||
listJobsForWorkflowRun: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs"
|
|
||||||
],
|
|
||||||
listJobsForWorkflowRunAttempt: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs"
|
|
||||||
],
|
|
||||||
listLabelsForSelfHostedRunnerForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/runners/{runner_id}/labels"
|
|
||||||
],
|
|
||||||
listLabelsForSelfHostedRunnerForRepo: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runners/{runner_id}/labels"
|
|
||||||
],
|
|
||||||
listOrgSecrets: ["GET /orgs/{org}/actions/secrets"],
|
|
||||||
listOrgVariables: ["GET /orgs/{org}/actions/variables"],
|
|
||||||
listRepoOrganizationSecrets: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/organization-secrets"
|
|
||||||
],
|
|
||||||
listRepoOrganizationVariables: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/organization-variables"
|
|
||||||
],
|
|
||||||
listRepoSecrets: ["GET /repos/{owner}/{repo}/actions/secrets"],
|
|
||||||
listRepoVariables: ["GET /repos/{owner}/{repo}/actions/variables"],
|
|
||||||
listRepoWorkflows: ["GET /repos/{owner}/{repo}/actions/workflows"],
|
|
||||||
listRunnerApplicationsForOrg: ["GET /orgs/{org}/actions/runners/downloads"],
|
|
||||||
listRunnerApplicationsForRepo: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runners/downloads"
|
|
||||||
],
|
|
||||||
listSelectedReposForOrgSecret: [
|
|
||||||
"GET /orgs/{org}/actions/secrets/{secret_name}/repositories"
|
|
||||||
],
|
|
||||||
listSelectedReposForOrgVariable: [
|
|
||||||
"GET /orgs/{org}/actions/variables/{name}/repositories"
|
|
||||||
],
|
|
||||||
listSelectedRepositoriesEnabledGithubActionsOrganization: [
|
|
||||||
"GET /orgs/{org}/actions/permissions/repositories"
|
|
||||||
],
|
|
||||||
listSelfHostedRunnersForOrg: ["GET /orgs/{org}/actions/runners"],
|
|
||||||
listSelfHostedRunnersForRepo: ["GET /repos/{owner}/{repo}/actions/runners"],
|
|
||||||
listWorkflowRunArtifacts: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts"
|
|
||||||
],
|
|
||||||
listWorkflowRuns: [
|
|
||||||
"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs"
|
|
||||||
],
|
|
||||||
listWorkflowRunsForRepo: ["GET /repos/{owner}/{repo}/actions/runs"],
|
|
||||||
reRunJobForWorkflowRun: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/jobs/{job_id}/rerun"
|
|
||||||
],
|
|
||||||
reRunWorkflow: ["POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun"],
|
|
||||||
reRunWorkflowFailedJobs: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs"
|
|
||||||
],
|
|
||||||
removeAllCustomLabelsFromSelfHostedRunnerForOrg: [
|
|
||||||
"DELETE /orgs/{org}/actions/runners/{runner_id}/labels"
|
|
||||||
],
|
|
||||||
removeAllCustomLabelsFromSelfHostedRunnerForRepo: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels"
|
|
||||||
],
|
|
||||||
removeCustomLabelFromSelfHostedRunnerForOrg: [
|
|
||||||
"DELETE /orgs/{org}/actions/runners/{runner_id}/labels/{name}"
|
|
||||||
],
|
|
||||||
removeCustomLabelFromSelfHostedRunnerForRepo: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels/{name}"
|
|
||||||
],
|
|
||||||
removeSelectedRepoFromOrgSecret: [
|
|
||||||
"DELETE /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
removeSelectedRepoFromOrgVariable: [
|
|
||||||
"DELETE /orgs/{org}/actions/variables/{name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
reviewCustomGatesForRun: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/deployment_protection_rule"
|
|
||||||
],
|
|
||||||
reviewPendingDeploymentsForRun: [
|
|
||||||
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments"
|
|
||||||
],
|
|
||||||
setAllowedActionsOrganization: [
|
|
||||||
"PUT /orgs/{org}/actions/permissions/selected-actions"
|
|
||||||
],
|
|
||||||
setAllowedActionsRepository: [
|
|
||||||
"PUT /repos/{owner}/{repo}/actions/permissions/selected-actions"
|
|
||||||
],
|
|
||||||
setCustomLabelsForSelfHostedRunnerForOrg: [
|
|
||||||
"PUT /orgs/{org}/actions/runners/{runner_id}/labels"
|
|
||||||
],
|
|
||||||
setCustomLabelsForSelfHostedRunnerForRepo: [
|
|
||||||
"PUT /repos/{owner}/{repo}/actions/runners/{runner_id}/labels"
|
|
||||||
],
|
|
||||||
setCustomOidcSubClaimForRepo: [
|
|
||||||
"PUT /repos/{owner}/{repo}/actions/oidc/customization/sub"
|
|
||||||
],
|
|
||||||
setGithubActionsDefaultWorkflowPermissionsOrganization: [
|
|
||||||
"PUT /orgs/{org}/actions/permissions/workflow"
|
|
||||||
],
|
|
||||||
setGithubActionsDefaultWorkflowPermissionsRepository: [
|
|
||||||
"PUT /repos/{owner}/{repo}/actions/permissions/workflow"
|
|
||||||
],
|
|
||||||
setGithubActionsPermissionsOrganization: [
|
|
||||||
"PUT /orgs/{org}/actions/permissions"
|
|
||||||
],
|
|
||||||
setGithubActionsPermissionsRepository: [
|
|
||||||
"PUT /repos/{owner}/{repo}/actions/permissions"
|
|
||||||
],
|
|
||||||
setSelectedReposForOrgSecret: [
|
|
||||||
"PUT /orgs/{org}/actions/secrets/{secret_name}/repositories"
|
|
||||||
],
|
|
||||||
setSelectedReposForOrgVariable: [
|
|
||||||
"PUT /orgs/{org}/actions/variables/{name}/repositories"
|
|
||||||
],
|
|
||||||
setSelectedRepositoriesEnabledGithubActionsOrganization: [
|
|
||||||
"PUT /orgs/{org}/actions/permissions/repositories"
|
|
||||||
],
|
|
||||||
setWorkflowAccessToRepository: [
|
|
||||||
"PUT /repos/{owner}/{repo}/actions/permissions/access"
|
|
||||||
],
|
|
||||||
updateEnvironmentVariable: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}"
|
|
||||||
],
|
|
||||||
updateHostedRunnerForOrg: [
|
|
||||||
"PATCH /orgs/{org}/actions/hosted-runners/{hosted_runner_id}"
|
|
||||||
],
|
|
||||||
updateOrgVariable: ["PATCH /orgs/{org}/actions/variables/{name}"],
|
|
||||||
updateRepoVariable: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/actions/variables/{name}"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
activity: {
|
|
||||||
checkRepoIsStarredByAuthenticatedUser: ["GET /user/starred/{owner}/{repo}"],
|
|
||||||
deleteRepoSubscription: ["DELETE /repos/{owner}/{repo}/subscription"],
|
|
||||||
deleteThreadSubscription: [
|
|
||||||
"DELETE /notifications/threads/{thread_id}/subscription"
|
|
||||||
],
|
|
||||||
getFeeds: ["GET /feeds"],
|
|
||||||
getRepoSubscription: ["GET /repos/{owner}/{repo}/subscription"],
|
|
||||||
getThread: ["GET /notifications/threads/{thread_id}"],
|
|
||||||
getThreadSubscriptionForAuthenticatedUser: [
|
|
||||||
"GET /notifications/threads/{thread_id}/subscription"
|
|
||||||
],
|
|
||||||
listEventsForAuthenticatedUser: ["GET /users/{username}/events"],
|
|
||||||
listNotificationsForAuthenticatedUser: ["GET /notifications"],
|
|
||||||
listOrgEventsForAuthenticatedUser: [
|
|
||||||
"GET /users/{username}/events/orgs/{org}"
|
|
||||||
],
|
|
||||||
listPublicEvents: ["GET /events"],
|
|
||||||
listPublicEventsForRepoNetwork: ["GET /networks/{owner}/{repo}/events"],
|
|
||||||
listPublicEventsForUser: ["GET /users/{username}/events/public"],
|
|
||||||
listPublicOrgEvents: ["GET /orgs/{org}/events"],
|
|
||||||
listReceivedEventsForUser: ["GET /users/{username}/received_events"],
|
|
||||||
listReceivedPublicEventsForUser: [
|
|
||||||
"GET /users/{username}/received_events/public"
|
|
||||||
],
|
|
||||||
listRepoEvents: ["GET /repos/{owner}/{repo}/events"],
|
|
||||||
listRepoNotificationsForAuthenticatedUser: [
|
|
||||||
"GET /repos/{owner}/{repo}/notifications"
|
|
||||||
],
|
|
||||||
listReposStarredByAuthenticatedUser: ["GET /user/starred"],
|
|
||||||
listReposStarredByUser: ["GET /users/{username}/starred"],
|
|
||||||
listReposWatchedByUser: ["GET /users/{username}/subscriptions"],
|
|
||||||
listStargazersForRepo: ["GET /repos/{owner}/{repo}/stargazers"],
|
|
||||||
listWatchedReposForAuthenticatedUser: ["GET /user/subscriptions"],
|
|
||||||
listWatchersForRepo: ["GET /repos/{owner}/{repo}/subscribers"],
|
|
||||||
markNotificationsAsRead: ["PUT /notifications"],
|
|
||||||
markRepoNotificationsAsRead: ["PUT /repos/{owner}/{repo}/notifications"],
|
|
||||||
markThreadAsDone: ["DELETE /notifications/threads/{thread_id}"],
|
|
||||||
markThreadAsRead: ["PATCH /notifications/threads/{thread_id}"],
|
|
||||||
setRepoSubscription: ["PUT /repos/{owner}/{repo}/subscription"],
|
|
||||||
setThreadSubscription: [
|
|
||||||
"PUT /notifications/threads/{thread_id}/subscription"
|
|
||||||
],
|
|
||||||
starRepoForAuthenticatedUser: ["PUT /user/starred/{owner}/{repo}"],
|
|
||||||
unstarRepoForAuthenticatedUser: ["DELETE /user/starred/{owner}/{repo}"]
|
|
||||||
},
|
|
||||||
apps: {
|
|
||||||
addRepoToInstallation: [
|
|
||||||
"PUT /user/installations/{installation_id}/repositories/{repository_id}",
|
|
||||||
{},
|
|
||||||
{ renamed: ["apps", "addRepoToInstallationForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
addRepoToInstallationForAuthenticatedUser: [
|
|
||||||
"PUT /user/installations/{installation_id}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
checkToken: ["POST /applications/{client_id}/token"],
|
|
||||||
createFromManifest: ["POST /app-manifests/{code}/conversions"],
|
|
||||||
createInstallationAccessToken: [
|
|
||||||
"POST /app/installations/{installation_id}/access_tokens"
|
|
||||||
],
|
|
||||||
deleteAuthorization: ["DELETE /applications/{client_id}/grant"],
|
|
||||||
deleteInstallation: ["DELETE /app/installations/{installation_id}"],
|
|
||||||
deleteToken: ["DELETE /applications/{client_id}/token"],
|
|
||||||
getAuthenticated: ["GET /app"],
|
|
||||||
getBySlug: ["GET /apps/{app_slug}"],
|
|
||||||
getInstallation: ["GET /app/installations/{installation_id}"],
|
|
||||||
getOrgInstallation: ["GET /orgs/{org}/installation"],
|
|
||||||
getRepoInstallation: ["GET /repos/{owner}/{repo}/installation"],
|
|
||||||
getSubscriptionPlanForAccount: [
|
|
||||||
"GET /marketplace_listing/accounts/{account_id}"
|
|
||||||
],
|
|
||||||
getSubscriptionPlanForAccountStubbed: [
|
|
||||||
"GET /marketplace_listing/stubbed/accounts/{account_id}"
|
|
||||||
],
|
|
||||||
getUserInstallation: ["GET /users/{username}/installation"],
|
|
||||||
getWebhookConfigForApp: ["GET /app/hook/config"],
|
|
||||||
getWebhookDelivery: ["GET /app/hook/deliveries/{delivery_id}"],
|
|
||||||
listAccountsForPlan: ["GET /marketplace_listing/plans/{plan_id}/accounts"],
|
|
||||||
listAccountsForPlanStubbed: [
|
|
||||||
"GET /marketplace_listing/stubbed/plans/{plan_id}/accounts"
|
|
||||||
],
|
|
||||||
listInstallationReposForAuthenticatedUser: [
|
|
||||||
"GET /user/installations/{installation_id}/repositories"
|
|
||||||
],
|
|
||||||
listInstallationRequestsForAuthenticatedApp: [
|
|
||||||
"GET /app/installation-requests"
|
|
||||||
],
|
|
||||||
listInstallations: ["GET /app/installations"],
|
|
||||||
listInstallationsForAuthenticatedUser: ["GET /user/installations"],
|
|
||||||
listPlans: ["GET /marketplace_listing/plans"],
|
|
||||||
listPlansStubbed: ["GET /marketplace_listing/stubbed/plans"],
|
|
||||||
listReposAccessibleToInstallation: ["GET /installation/repositories"],
|
|
||||||
listSubscriptionsForAuthenticatedUser: ["GET /user/marketplace_purchases"],
|
|
||||||
listSubscriptionsForAuthenticatedUserStubbed: [
|
|
||||||
"GET /user/marketplace_purchases/stubbed"
|
|
||||||
],
|
|
||||||
listWebhookDeliveries: ["GET /app/hook/deliveries"],
|
|
||||||
redeliverWebhookDelivery: [
|
|
||||||
"POST /app/hook/deliveries/{delivery_id}/attempts"
|
|
||||||
],
|
|
||||||
removeRepoFromInstallation: [
|
|
||||||
"DELETE /user/installations/{installation_id}/repositories/{repository_id}",
|
|
||||||
{},
|
|
||||||
{ renamed: ["apps", "removeRepoFromInstallationForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
removeRepoFromInstallationForAuthenticatedUser: [
|
|
||||||
"DELETE /user/installations/{installation_id}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
resetToken: ["PATCH /applications/{client_id}/token"],
|
|
||||||
revokeInstallationAccessToken: ["DELETE /installation/token"],
|
|
||||||
scopeToken: ["POST /applications/{client_id}/token/scoped"],
|
|
||||||
suspendInstallation: ["PUT /app/installations/{installation_id}/suspended"],
|
|
||||||
unsuspendInstallation: [
|
|
||||||
"DELETE /app/installations/{installation_id}/suspended"
|
|
||||||
],
|
|
||||||
updateWebhookConfigForApp: ["PATCH /app/hook/config"]
|
|
||||||
},
|
|
||||||
billing: {
|
|
||||||
getGithubActionsBillingOrg: ["GET /orgs/{org}/settings/billing/actions"],
|
|
||||||
getGithubActionsBillingUser: [
|
|
||||||
"GET /users/{username}/settings/billing/actions"
|
|
||||||
],
|
|
||||||
getGithubBillingUsageReportOrg: [
|
|
||||||
"GET /organizations/{org}/settings/billing/usage"
|
|
||||||
],
|
|
||||||
getGithubBillingUsageReportUser: [
|
|
||||||
"GET /users/{username}/settings/billing/usage"
|
|
||||||
],
|
|
||||||
getGithubPackagesBillingOrg: ["GET /orgs/{org}/settings/billing/packages"],
|
|
||||||
getGithubPackagesBillingUser: [
|
|
||||||
"GET /users/{username}/settings/billing/packages"
|
|
||||||
],
|
|
||||||
getSharedStorageBillingOrg: [
|
|
||||||
"GET /orgs/{org}/settings/billing/shared-storage"
|
|
||||||
],
|
|
||||||
getSharedStorageBillingUser: [
|
|
||||||
"GET /users/{username}/settings/billing/shared-storage"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
campaigns: {
|
|
||||||
createCampaign: ["POST /orgs/{org}/campaigns"],
|
|
||||||
deleteCampaign: ["DELETE /orgs/{org}/campaigns/{campaign_number}"],
|
|
||||||
getCampaignSummary: ["GET /orgs/{org}/campaigns/{campaign_number}"],
|
|
||||||
listOrgCampaigns: ["GET /orgs/{org}/campaigns"],
|
|
||||||
updateCampaign: ["PATCH /orgs/{org}/campaigns/{campaign_number}"]
|
|
||||||
},
|
|
||||||
checks: {
|
|
||||||
create: ["POST /repos/{owner}/{repo}/check-runs"],
|
|
||||||
createSuite: ["POST /repos/{owner}/{repo}/check-suites"],
|
|
||||||
get: ["GET /repos/{owner}/{repo}/check-runs/{check_run_id}"],
|
|
||||||
getSuite: ["GET /repos/{owner}/{repo}/check-suites/{check_suite_id}"],
|
|
||||||
listAnnotations: [
|
|
||||||
"GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations"
|
|
||||||
],
|
|
||||||
listForRef: ["GET /repos/{owner}/{repo}/commits/{ref}/check-runs"],
|
|
||||||
listForSuite: [
|
|
||||||
"GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs"
|
|
||||||
],
|
|
||||||
listSuitesForRef: ["GET /repos/{owner}/{repo}/commits/{ref}/check-suites"],
|
|
||||||
rerequestRun: [
|
|
||||||
"POST /repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest"
|
|
||||||
],
|
|
||||||
rerequestSuite: [
|
|
||||||
"POST /repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest"
|
|
||||||
],
|
|
||||||
setSuitesPreferences: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/check-suites/preferences"
|
|
||||||
],
|
|
||||||
update: ["PATCH /repos/{owner}/{repo}/check-runs/{check_run_id}"]
|
|
||||||
},
|
|
||||||
codeScanning: {
|
|
||||||
commitAutofix: [
|
|
||||||
"POST /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix/commits"
|
|
||||||
],
|
|
||||||
createAutofix: [
|
|
||||||
"POST /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix"
|
|
||||||
],
|
|
||||||
createVariantAnalysis: [
|
|
||||||
"POST /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses"
|
|
||||||
],
|
|
||||||
deleteAnalysis: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}{?confirm_delete}"
|
|
||||||
],
|
|
||||||
deleteCodeqlDatabase: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}"
|
|
||||||
],
|
|
||||||
getAlert: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}",
|
|
||||||
{},
|
|
||||||
{ renamedParameters: { alert_id: "alert_number" } }
|
|
||||||
],
|
|
||||||
getAnalysis: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}"
|
|
||||||
],
|
|
||||||
getAutofix: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix"
|
|
||||||
],
|
|
||||||
getCodeqlDatabase: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}"
|
|
||||||
],
|
|
||||||
getDefaultSetup: ["GET /repos/{owner}/{repo}/code-scanning/default-setup"],
|
|
||||||
getSarif: ["GET /repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id}"],
|
|
||||||
getVariantAnalysis: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}"
|
|
||||||
],
|
|
||||||
getVariantAnalysisRepoTask: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}/repos/{repo_owner}/{repo_name}"
|
|
||||||
],
|
|
||||||
listAlertInstances: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances"
|
|
||||||
],
|
|
||||||
listAlertsForOrg: ["GET /orgs/{org}/code-scanning/alerts"],
|
|
||||||
listAlertsForRepo: ["GET /repos/{owner}/{repo}/code-scanning/alerts"],
|
|
||||||
listAlertsInstances: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances",
|
|
||||||
{},
|
|
||||||
{ renamed: ["codeScanning", "listAlertInstances"] }
|
|
||||||
],
|
|
||||||
listCodeqlDatabases: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-scanning/codeql/databases"
|
|
||||||
],
|
|
||||||
listRecentAnalyses: ["GET /repos/{owner}/{repo}/code-scanning/analyses"],
|
|
||||||
updateAlert: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}"
|
|
||||||
],
|
|
||||||
updateDefaultSetup: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/code-scanning/default-setup"
|
|
||||||
],
|
|
||||||
uploadSarif: ["POST /repos/{owner}/{repo}/code-scanning/sarifs"]
|
|
||||||
},
|
|
||||||
codeSecurity: {
|
|
||||||
attachConfiguration: [
|
|
||||||
"POST /orgs/{org}/code-security/configurations/{configuration_id}/attach"
|
|
||||||
],
|
|
||||||
attachEnterpriseConfiguration: [
|
|
||||||
"POST /enterprises/{enterprise}/code-security/configurations/{configuration_id}/attach"
|
|
||||||
],
|
|
||||||
createConfiguration: ["POST /orgs/{org}/code-security/configurations"],
|
|
||||||
createConfigurationForEnterprise: [
|
|
||||||
"POST /enterprises/{enterprise}/code-security/configurations"
|
|
||||||
],
|
|
||||||
deleteConfiguration: [
|
|
||||||
"DELETE /orgs/{org}/code-security/configurations/{configuration_id}"
|
|
||||||
],
|
|
||||||
deleteConfigurationForEnterprise: [
|
|
||||||
"DELETE /enterprises/{enterprise}/code-security/configurations/{configuration_id}"
|
|
||||||
],
|
|
||||||
detachConfiguration: [
|
|
||||||
"DELETE /orgs/{org}/code-security/configurations/detach"
|
|
||||||
],
|
|
||||||
getConfiguration: [
|
|
||||||
"GET /orgs/{org}/code-security/configurations/{configuration_id}"
|
|
||||||
],
|
|
||||||
getConfigurationForRepository: [
|
|
||||||
"GET /repos/{owner}/{repo}/code-security-configuration"
|
|
||||||
],
|
|
||||||
getConfigurationsForEnterprise: [
|
|
||||||
"GET /enterprises/{enterprise}/code-security/configurations"
|
|
||||||
],
|
|
||||||
getConfigurationsForOrg: ["GET /orgs/{org}/code-security/configurations"],
|
|
||||||
getDefaultConfigurations: [
|
|
||||||
"GET /orgs/{org}/code-security/configurations/defaults"
|
|
||||||
],
|
|
||||||
getDefaultConfigurationsForEnterprise: [
|
|
||||||
"GET /enterprises/{enterprise}/code-security/configurations/defaults"
|
|
||||||
],
|
|
||||||
getRepositoriesForConfiguration: [
|
|
||||||
"GET /orgs/{org}/code-security/configurations/{configuration_id}/repositories"
|
|
||||||
],
|
|
||||||
getRepositoriesForEnterpriseConfiguration: [
|
|
||||||
"GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}/repositories"
|
|
||||||
],
|
|
||||||
getSingleConfigurationForEnterprise: [
|
|
||||||
"GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}"
|
|
||||||
],
|
|
||||||
setConfigurationAsDefault: [
|
|
||||||
"PUT /orgs/{org}/code-security/configurations/{configuration_id}/defaults"
|
|
||||||
],
|
|
||||||
setConfigurationAsDefaultForEnterprise: [
|
|
||||||
"PUT /enterprises/{enterprise}/code-security/configurations/{configuration_id}/defaults"
|
|
||||||
],
|
|
||||||
updateConfiguration: [
|
|
||||||
"PATCH /orgs/{org}/code-security/configurations/{configuration_id}"
|
|
||||||
],
|
|
||||||
updateEnterpriseConfiguration: [
|
|
||||||
"PATCH /enterprises/{enterprise}/code-security/configurations/{configuration_id}"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
codesOfConduct: {
|
|
||||||
getAllCodesOfConduct: ["GET /codes_of_conduct"],
|
|
||||||
getConductCode: ["GET /codes_of_conduct/{key}"]
|
|
||||||
},
|
|
||||||
codespaces: {
|
|
||||||
addRepositoryForSecretForAuthenticatedUser: [
|
|
||||||
"PUT /user/codespaces/secrets/{secret_name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
addSelectedRepoToOrgSecret: [
|
|
||||||
"PUT /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
checkPermissionsForDevcontainer: [
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces/permissions_check"
|
|
||||||
],
|
|
||||||
codespaceMachinesForAuthenticatedUser: [
|
|
||||||
"GET /user/codespaces/{codespace_name}/machines"
|
|
||||||
],
|
|
||||||
createForAuthenticatedUser: ["POST /user/codespaces"],
|
|
||||||
createOrUpdateOrgSecret: [
|
|
||||||
"PUT /orgs/{org}/codespaces/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
createOrUpdateRepoSecret: [
|
|
||||||
"PUT /repos/{owner}/{repo}/codespaces/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
createOrUpdateSecretForAuthenticatedUser: [
|
|
||||||
"PUT /user/codespaces/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
createWithPrForAuthenticatedUser: [
|
|
||||||
"POST /repos/{owner}/{repo}/pulls/{pull_number}/codespaces"
|
|
||||||
],
|
|
||||||
createWithRepoForAuthenticatedUser: [
|
|
||||||
"POST /repos/{owner}/{repo}/codespaces"
|
|
||||||
],
|
|
||||||
deleteForAuthenticatedUser: ["DELETE /user/codespaces/{codespace_name}"],
|
|
||||||
deleteFromOrganization: [
|
|
||||||
"DELETE /orgs/{org}/members/{username}/codespaces/{codespace_name}"
|
|
||||||
],
|
|
||||||
deleteOrgSecret: ["DELETE /orgs/{org}/codespaces/secrets/{secret_name}"],
|
|
||||||
deleteRepoSecret: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/codespaces/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
deleteSecretForAuthenticatedUser: [
|
|
||||||
"DELETE /user/codespaces/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
exportForAuthenticatedUser: [
|
|
||||||
"POST /user/codespaces/{codespace_name}/exports"
|
|
||||||
],
|
|
||||||
getCodespacesForUserInOrg: [
|
|
||||||
"GET /orgs/{org}/members/{username}/codespaces"
|
|
||||||
],
|
|
||||||
getExportDetailsForAuthenticatedUser: [
|
|
||||||
"GET /user/codespaces/{codespace_name}/exports/{export_id}"
|
|
||||||
],
|
|
||||||
getForAuthenticatedUser: ["GET /user/codespaces/{codespace_name}"],
|
|
||||||
getOrgPublicKey: ["GET /orgs/{org}/codespaces/secrets/public-key"],
|
|
||||||
getOrgSecret: ["GET /orgs/{org}/codespaces/secrets/{secret_name}"],
|
|
||||||
getPublicKeyForAuthenticatedUser: [
|
|
||||||
"GET /user/codespaces/secrets/public-key"
|
|
||||||
],
|
|
||||||
getRepoPublicKey: [
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces/secrets/public-key"
|
|
||||||
],
|
|
||||||
getRepoSecret: [
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
getSecretForAuthenticatedUser: [
|
|
||||||
"GET /user/codespaces/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
listDevcontainersInRepositoryForAuthenticatedUser: [
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces/devcontainers"
|
|
||||||
],
|
|
||||||
listForAuthenticatedUser: ["GET /user/codespaces"],
|
|
||||||
listInOrganization: [
|
|
||||||
"GET /orgs/{org}/codespaces",
|
|
||||||
{},
|
|
||||||
{ renamedParameters: { org_id: "org" } }
|
|
||||||
],
|
|
||||||
listInRepositoryForAuthenticatedUser: [
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces"
|
|
||||||
],
|
|
||||||
listOrgSecrets: ["GET /orgs/{org}/codespaces/secrets"],
|
|
||||||
listRepoSecrets: ["GET /repos/{owner}/{repo}/codespaces/secrets"],
|
|
||||||
listRepositoriesForSecretForAuthenticatedUser: [
|
|
||||||
"GET /user/codespaces/secrets/{secret_name}/repositories"
|
|
||||||
],
|
|
||||||
listSecretsForAuthenticatedUser: ["GET /user/codespaces/secrets"],
|
|
||||||
listSelectedReposForOrgSecret: [
|
|
||||||
"GET /orgs/{org}/codespaces/secrets/{secret_name}/repositories"
|
|
||||||
],
|
|
||||||
preFlightWithRepoForAuthenticatedUser: [
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces/new"
|
|
||||||
],
|
|
||||||
publishForAuthenticatedUser: [
|
|
||||||
"POST /user/codespaces/{codespace_name}/publish"
|
|
||||||
],
|
|
||||||
removeRepositoryForSecretForAuthenticatedUser: [
|
|
||||||
"DELETE /user/codespaces/secrets/{secret_name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
removeSelectedRepoFromOrgSecret: [
|
|
||||||
"DELETE /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
repoMachinesForAuthenticatedUser: [
|
|
||||||
"GET /repos/{owner}/{repo}/codespaces/machines"
|
|
||||||
],
|
|
||||||
setRepositoriesForSecretForAuthenticatedUser: [
|
|
||||||
"PUT /user/codespaces/secrets/{secret_name}/repositories"
|
|
||||||
],
|
|
||||||
setSelectedReposForOrgSecret: [
|
|
||||||
"PUT /orgs/{org}/codespaces/secrets/{secret_name}/repositories"
|
|
||||||
],
|
|
||||||
startForAuthenticatedUser: ["POST /user/codespaces/{codespace_name}/start"],
|
|
||||||
stopForAuthenticatedUser: ["POST /user/codespaces/{codespace_name}/stop"],
|
|
||||||
stopInOrganization: [
|
|
||||||
"POST /orgs/{org}/members/{username}/codespaces/{codespace_name}/stop"
|
|
||||||
],
|
|
||||||
updateForAuthenticatedUser: ["PATCH /user/codespaces/{codespace_name}"]
|
|
||||||
},
|
|
||||||
copilot: {
|
|
||||||
addCopilotSeatsForTeams: [
|
|
||||||
"POST /orgs/{org}/copilot/billing/selected_teams"
|
|
||||||
],
|
|
||||||
addCopilotSeatsForUsers: [
|
|
||||||
"POST /orgs/{org}/copilot/billing/selected_users"
|
|
||||||
],
|
|
||||||
cancelCopilotSeatAssignmentForTeams: [
|
|
||||||
"DELETE /orgs/{org}/copilot/billing/selected_teams"
|
|
||||||
],
|
|
||||||
cancelCopilotSeatAssignmentForUsers: [
|
|
||||||
"DELETE /orgs/{org}/copilot/billing/selected_users"
|
|
||||||
],
|
|
||||||
copilotMetricsForOrganization: ["GET /orgs/{org}/copilot/metrics"],
|
|
||||||
copilotMetricsForTeam: ["GET /orgs/{org}/team/{team_slug}/copilot/metrics"],
|
|
||||||
getCopilotOrganizationDetails: ["GET /orgs/{org}/copilot/billing"],
|
|
||||||
getCopilotSeatDetailsForUser: [
|
|
||||||
"GET /orgs/{org}/members/{username}/copilot"
|
|
||||||
],
|
|
||||||
listCopilotSeats: ["GET /orgs/{org}/copilot/billing/seats"]
|
|
||||||
},
|
|
||||||
credentials: { revoke: ["POST /credentials/revoke"] },
|
|
||||||
dependabot: {
|
|
||||||
addSelectedRepoToOrgSecret: [
|
|
||||||
"PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
createOrUpdateOrgSecret: [
|
|
||||||
"PUT /orgs/{org}/dependabot/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
createOrUpdateRepoSecret: [
|
|
||||||
"PUT /repos/{owner}/{repo}/dependabot/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
deleteOrgSecret: ["DELETE /orgs/{org}/dependabot/secrets/{secret_name}"],
|
|
||||||
deleteRepoSecret: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/dependabot/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
getAlert: ["GET /repos/{owner}/{repo}/dependabot/alerts/{alert_number}"],
|
|
||||||
getOrgPublicKey: ["GET /orgs/{org}/dependabot/secrets/public-key"],
|
|
||||||
getOrgSecret: ["GET /orgs/{org}/dependabot/secrets/{secret_name}"],
|
|
||||||
getRepoPublicKey: [
|
|
||||||
"GET /repos/{owner}/{repo}/dependabot/secrets/public-key"
|
|
||||||
],
|
|
||||||
getRepoSecret: [
|
|
||||||
"GET /repos/{owner}/{repo}/dependabot/secrets/{secret_name}"
|
|
||||||
],
|
|
||||||
listAlertsForEnterprise: [
|
|
||||||
"GET /enterprises/{enterprise}/dependabot/alerts"
|
|
||||||
],
|
|
||||||
listAlertsForOrg: ["GET /orgs/{org}/dependabot/alerts"],
|
|
||||||
listAlertsForRepo: ["GET /repos/{owner}/{repo}/dependabot/alerts"],
|
|
||||||
listOrgSecrets: ["GET /orgs/{org}/dependabot/secrets"],
|
|
||||||
listRepoSecrets: ["GET /repos/{owner}/{repo}/dependabot/secrets"],
|
|
||||||
listSelectedReposForOrgSecret: [
|
|
||||||
"GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories"
|
|
||||||
],
|
|
||||||
removeSelectedRepoFromOrgSecret: [
|
|
||||||
"DELETE /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}"
|
|
||||||
],
|
|
||||||
repositoryAccessForOrg: [
|
|
||||||
"GET /organizations/{org}/dependabot/repository-access"
|
|
||||||
],
|
|
||||||
setRepositoryAccessDefaultLevel: [
|
|
||||||
"PUT /organizations/{org}/dependabot/repository-access/default-level"
|
|
||||||
],
|
|
||||||
setSelectedReposForOrgSecret: [
|
|
||||||
"PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories"
|
|
||||||
],
|
|
||||||
updateAlert: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/dependabot/alerts/{alert_number}"
|
|
||||||
],
|
|
||||||
updateRepositoryAccessForOrg: [
|
|
||||||
"PATCH /organizations/{org}/dependabot/repository-access"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
dependencyGraph: {
|
|
||||||
createRepositorySnapshot: [
|
|
||||||
"POST /repos/{owner}/{repo}/dependency-graph/snapshots"
|
|
||||||
],
|
|
||||||
diffRange: [
|
|
||||||
"GET /repos/{owner}/{repo}/dependency-graph/compare/{basehead}"
|
|
||||||
],
|
|
||||||
exportSbom: ["GET /repos/{owner}/{repo}/dependency-graph/sbom"]
|
|
||||||
},
|
|
||||||
emojis: { get: ["GET /emojis"] },
|
|
||||||
gists: {
|
|
||||||
checkIsStarred: ["GET /gists/{gist_id}/star"],
|
|
||||||
create: ["POST /gists"],
|
|
||||||
createComment: ["POST /gists/{gist_id}/comments"],
|
|
||||||
delete: ["DELETE /gists/{gist_id}"],
|
|
||||||
deleteComment: ["DELETE /gists/{gist_id}/comments/{comment_id}"],
|
|
||||||
fork: ["POST /gists/{gist_id}/forks"],
|
|
||||||
get: ["GET /gists/{gist_id}"],
|
|
||||||
getComment: ["GET /gists/{gist_id}/comments/{comment_id}"],
|
|
||||||
getRevision: ["GET /gists/{gist_id}/{sha}"],
|
|
||||||
list: ["GET /gists"],
|
|
||||||
listComments: ["GET /gists/{gist_id}/comments"],
|
|
||||||
listCommits: ["GET /gists/{gist_id}/commits"],
|
|
||||||
listForUser: ["GET /users/{username}/gists"],
|
|
||||||
listForks: ["GET /gists/{gist_id}/forks"],
|
|
||||||
listPublic: ["GET /gists/public"],
|
|
||||||
listStarred: ["GET /gists/starred"],
|
|
||||||
star: ["PUT /gists/{gist_id}/star"],
|
|
||||||
unstar: ["DELETE /gists/{gist_id}/star"],
|
|
||||||
update: ["PATCH /gists/{gist_id}"],
|
|
||||||
updateComment: ["PATCH /gists/{gist_id}/comments/{comment_id}"]
|
|
||||||
},
|
|
||||||
git: {
|
|
||||||
createBlob: ["POST /repos/{owner}/{repo}/git/blobs"],
|
|
||||||
createCommit: ["POST /repos/{owner}/{repo}/git/commits"],
|
|
||||||
createRef: ["POST /repos/{owner}/{repo}/git/refs"],
|
|
||||||
createTag: ["POST /repos/{owner}/{repo}/git/tags"],
|
|
||||||
createTree: ["POST /repos/{owner}/{repo}/git/trees"],
|
|
||||||
deleteRef: ["DELETE /repos/{owner}/{repo}/git/refs/{ref}"],
|
|
||||||
getBlob: ["GET /repos/{owner}/{repo}/git/blobs/{file_sha}"],
|
|
||||||
getCommit: ["GET /repos/{owner}/{repo}/git/commits/{commit_sha}"],
|
|
||||||
getRef: ["GET /repos/{owner}/{repo}/git/ref/{ref}"],
|
|
||||||
getTag: ["GET /repos/{owner}/{repo}/git/tags/{tag_sha}"],
|
|
||||||
getTree: ["GET /repos/{owner}/{repo}/git/trees/{tree_sha}"],
|
|
||||||
listMatchingRefs: ["GET /repos/{owner}/{repo}/git/matching-refs/{ref}"],
|
|
||||||
updateRef: ["PATCH /repos/{owner}/{repo}/git/refs/{ref}"]
|
|
||||||
},
|
|
||||||
gitignore: {
|
|
||||||
getAllTemplates: ["GET /gitignore/templates"],
|
|
||||||
getTemplate: ["GET /gitignore/templates/{name}"]
|
|
||||||
},
|
|
||||||
hostedCompute: {
|
|
||||||
createNetworkConfigurationForOrg: [
|
|
||||||
"POST /orgs/{org}/settings/network-configurations"
|
|
||||||
],
|
|
||||||
deleteNetworkConfigurationFromOrg: [
|
|
||||||
"DELETE /orgs/{org}/settings/network-configurations/{network_configuration_id}"
|
|
||||||
],
|
|
||||||
getNetworkConfigurationForOrg: [
|
|
||||||
"GET /orgs/{org}/settings/network-configurations/{network_configuration_id}"
|
|
||||||
],
|
|
||||||
getNetworkSettingsForOrg: [
|
|
||||||
"GET /orgs/{org}/settings/network-settings/{network_settings_id}"
|
|
||||||
],
|
|
||||||
listNetworkConfigurationsForOrg: [
|
|
||||||
"GET /orgs/{org}/settings/network-configurations"
|
|
||||||
],
|
|
||||||
updateNetworkConfigurationForOrg: [
|
|
||||||
"PATCH /orgs/{org}/settings/network-configurations/{network_configuration_id}"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
interactions: {
|
|
||||||
getRestrictionsForAuthenticatedUser: ["GET /user/interaction-limits"],
|
|
||||||
getRestrictionsForOrg: ["GET /orgs/{org}/interaction-limits"],
|
|
||||||
getRestrictionsForRepo: ["GET /repos/{owner}/{repo}/interaction-limits"],
|
|
||||||
getRestrictionsForYourPublicRepos: [
|
|
||||||
"GET /user/interaction-limits",
|
|
||||||
{},
|
|
||||||
{ renamed: ["interactions", "getRestrictionsForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
removeRestrictionsForAuthenticatedUser: ["DELETE /user/interaction-limits"],
|
|
||||||
removeRestrictionsForOrg: ["DELETE /orgs/{org}/interaction-limits"],
|
|
||||||
removeRestrictionsForRepo: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/interaction-limits"
|
|
||||||
],
|
|
||||||
removeRestrictionsForYourPublicRepos: [
|
|
||||||
"DELETE /user/interaction-limits",
|
|
||||||
{},
|
|
||||||
{ renamed: ["interactions", "removeRestrictionsForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
setRestrictionsForAuthenticatedUser: ["PUT /user/interaction-limits"],
|
|
||||||
setRestrictionsForOrg: ["PUT /orgs/{org}/interaction-limits"],
|
|
||||||
setRestrictionsForRepo: ["PUT /repos/{owner}/{repo}/interaction-limits"],
|
|
||||||
setRestrictionsForYourPublicRepos: [
|
|
||||||
"PUT /user/interaction-limits",
|
|
||||||
{},
|
|
||||||
{ renamed: ["interactions", "setRestrictionsForAuthenticatedUser"] }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
issues: {
|
|
||||||
addAssignees: [
|
|
||||||
"POST /repos/{owner}/{repo}/issues/{issue_number}/assignees"
|
|
||||||
],
|
|
||||||
addBlockedByDependency: [
|
|
||||||
"POST /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocked_by"
|
|
||||||
],
|
|
||||||
addLabels: ["POST /repos/{owner}/{repo}/issues/{issue_number}/labels"],
|
|
||||||
addSubIssue: [
|
|
||||||
"POST /repos/{owner}/{repo}/issues/{issue_number}/sub_issues"
|
|
||||||
],
|
|
||||||
checkUserCanBeAssigned: ["GET /repos/{owner}/{repo}/assignees/{assignee}"],
|
|
||||||
checkUserCanBeAssignedToIssue: [
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/assignees/{assignee}"
|
|
||||||
],
|
|
||||||
create: ["POST /repos/{owner}/{repo}/issues"],
|
|
||||||
createComment: [
|
|
||||||
"POST /repos/{owner}/{repo}/issues/{issue_number}/comments"
|
|
||||||
],
|
|
||||||
createLabel: ["POST /repos/{owner}/{repo}/labels"],
|
|
||||||
createMilestone: ["POST /repos/{owner}/{repo}/milestones"],
|
|
||||||
deleteComment: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}"
|
|
||||||
],
|
|
||||||
deleteLabel: ["DELETE /repos/{owner}/{repo}/labels/{name}"],
|
|
||||||
deleteMilestone: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/milestones/{milestone_number}"
|
|
||||||
],
|
|
||||||
get: ["GET /repos/{owner}/{repo}/issues/{issue_number}"],
|
|
||||||
getComment: ["GET /repos/{owner}/{repo}/issues/comments/{comment_id}"],
|
|
||||||
getEvent: ["GET /repos/{owner}/{repo}/issues/events/{event_id}"],
|
|
||||||
getLabel: ["GET /repos/{owner}/{repo}/labels/{name}"],
|
|
||||||
getMilestone: ["GET /repos/{owner}/{repo}/milestones/{milestone_number}"],
|
|
||||||
getParent: ["GET /repos/{owner}/{repo}/issues/{issue_number}/parent"],
|
|
||||||
list: ["GET /issues"],
|
|
||||||
listAssignees: ["GET /repos/{owner}/{repo}/assignees"],
|
|
||||||
listComments: ["GET /repos/{owner}/{repo}/issues/{issue_number}/comments"],
|
|
||||||
listCommentsForRepo: ["GET /repos/{owner}/{repo}/issues/comments"],
|
|
||||||
listDependenciesBlockedBy: [
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocked_by"
|
|
||||||
],
|
|
||||||
listDependenciesBlocking: [
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocking"
|
|
||||||
],
|
|
||||||
listEvents: ["GET /repos/{owner}/{repo}/issues/{issue_number}/events"],
|
|
||||||
listEventsForRepo: ["GET /repos/{owner}/{repo}/issues/events"],
|
|
||||||
listEventsForTimeline: [
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/timeline"
|
|
||||||
],
|
|
||||||
listForAuthenticatedUser: ["GET /user/issues"],
|
|
||||||
listForOrg: ["GET /orgs/{org}/issues"],
|
|
||||||
listForRepo: ["GET /repos/{owner}/{repo}/issues"],
|
|
||||||
listLabelsForMilestone: [
|
|
||||||
"GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels"
|
|
||||||
],
|
|
||||||
listLabelsForRepo: ["GET /repos/{owner}/{repo}/labels"],
|
|
||||||
listLabelsOnIssue: [
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/labels"
|
|
||||||
],
|
|
||||||
listMilestones: ["GET /repos/{owner}/{repo}/milestones"],
|
|
||||||
listSubIssues: [
|
|
||||||
"GET /repos/{owner}/{repo}/issues/{issue_number}/sub_issues"
|
|
||||||
],
|
|
||||||
lock: ["PUT /repos/{owner}/{repo}/issues/{issue_number}/lock"],
|
|
||||||
removeAllLabels: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels"
|
|
||||||
],
|
|
||||||
removeAssignees: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/assignees"
|
|
||||||
],
|
|
||||||
removeDependencyBlockedBy: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/dependencies/blocked_by/{issue_id}"
|
|
||||||
],
|
|
||||||
removeLabel: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels/{name}"
|
|
||||||
],
|
|
||||||
removeSubIssue: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/sub_issue"
|
|
||||||
],
|
|
||||||
reprioritizeSubIssue: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/issues/{issue_number}/sub_issues/priority"
|
|
||||||
],
|
|
||||||
setLabels: ["PUT /repos/{owner}/{repo}/issues/{issue_number}/labels"],
|
|
||||||
unlock: ["DELETE /repos/{owner}/{repo}/issues/{issue_number}/lock"],
|
|
||||||
update: ["PATCH /repos/{owner}/{repo}/issues/{issue_number}"],
|
|
||||||
updateComment: ["PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}"],
|
|
||||||
updateLabel: ["PATCH /repos/{owner}/{repo}/labels/{name}"],
|
|
||||||
updateMilestone: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/milestones/{milestone_number}"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
licenses: {
|
|
||||||
get: ["GET /licenses/{license}"],
|
|
||||||
getAllCommonlyUsed: ["GET /licenses"],
|
|
||||||
getForRepo: ["GET /repos/{owner}/{repo}/license"]
|
|
||||||
},
|
|
||||||
markdown: {
|
|
||||||
render: ["POST /markdown"],
|
|
||||||
renderRaw: [
|
|
||||||
"POST /markdown/raw",
|
|
||||||
{ headers: { "content-type": "text/plain; charset=utf-8" } }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
meta: {
|
|
||||||
get: ["GET /meta"],
|
|
||||||
getAllVersions: ["GET /versions"],
|
|
||||||
getOctocat: ["GET /octocat"],
|
|
||||||
getZen: ["GET /zen"],
|
|
||||||
root: ["GET /"]
|
|
||||||
},
|
|
||||||
migrations: {
|
|
||||||
deleteArchiveForAuthenticatedUser: [
|
|
||||||
"DELETE /user/migrations/{migration_id}/archive"
|
|
||||||
],
|
|
||||||
deleteArchiveForOrg: [
|
|
||||||
"DELETE /orgs/{org}/migrations/{migration_id}/archive"
|
|
||||||
],
|
|
||||||
downloadArchiveForOrg: [
|
|
||||||
"GET /orgs/{org}/migrations/{migration_id}/archive"
|
|
||||||
],
|
|
||||||
getArchiveForAuthenticatedUser: [
|
|
||||||
"GET /user/migrations/{migration_id}/archive"
|
|
||||||
],
|
|
||||||
getStatusForAuthenticatedUser: ["GET /user/migrations/{migration_id}"],
|
|
||||||
getStatusForOrg: ["GET /orgs/{org}/migrations/{migration_id}"],
|
|
||||||
listForAuthenticatedUser: ["GET /user/migrations"],
|
|
||||||
listForOrg: ["GET /orgs/{org}/migrations"],
|
|
||||||
listReposForAuthenticatedUser: [
|
|
||||||
"GET /user/migrations/{migration_id}/repositories"
|
|
||||||
],
|
|
||||||
listReposForOrg: ["GET /orgs/{org}/migrations/{migration_id}/repositories"],
|
|
||||||
listReposForUser: [
|
|
||||||
"GET /user/migrations/{migration_id}/repositories",
|
|
||||||
{},
|
|
||||||
{ renamed: ["migrations", "listReposForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
startForAuthenticatedUser: ["POST /user/migrations"],
|
|
||||||
startForOrg: ["POST /orgs/{org}/migrations"],
|
|
||||||
unlockRepoForAuthenticatedUser: [
|
|
||||||
"DELETE /user/migrations/{migration_id}/repos/{repo_name}/lock"
|
|
||||||
],
|
|
||||||
unlockRepoForOrg: [
|
|
||||||
"DELETE /orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
oidc: {
|
|
||||||
getOidcCustomSubTemplateForOrg: [
|
|
||||||
"GET /orgs/{org}/actions/oidc/customization/sub"
|
|
||||||
],
|
|
||||||
updateOidcCustomSubTemplateForOrg: [
|
|
||||||
"PUT /orgs/{org}/actions/oidc/customization/sub"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
orgs: {
|
|
||||||
addSecurityManagerTeam: [
|
|
||||||
"PUT /orgs/{org}/security-managers/teams/{team_slug}",
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
deprecated: "octokit.rest.orgs.addSecurityManagerTeam() is deprecated, see https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
assignTeamToOrgRole: [
|
|
||||||
"PUT /orgs/{org}/organization-roles/teams/{team_slug}/{role_id}"
|
|
||||||
],
|
|
||||||
assignUserToOrgRole: [
|
|
||||||
"PUT /orgs/{org}/organization-roles/users/{username}/{role_id}"
|
|
||||||
],
|
|
||||||
blockUser: ["PUT /orgs/{org}/blocks/{username}"],
|
|
||||||
cancelInvitation: ["DELETE /orgs/{org}/invitations/{invitation_id}"],
|
|
||||||
checkBlockedUser: ["GET /orgs/{org}/blocks/{username}"],
|
|
||||||
checkMembershipForUser: ["GET /orgs/{org}/members/{username}"],
|
|
||||||
checkPublicMembershipForUser: ["GET /orgs/{org}/public_members/{username}"],
|
|
||||||
convertMemberToOutsideCollaborator: [
|
|
||||||
"PUT /orgs/{org}/outside_collaborators/{username}"
|
|
||||||
],
|
|
||||||
createArtifactStorageRecord: [
|
|
||||||
"POST /orgs/{org}/artifacts/metadata/storage-record"
|
|
||||||
],
|
|
||||||
createInvitation: ["POST /orgs/{org}/invitations"],
|
|
||||||
createIssueType: ["POST /orgs/{org}/issue-types"],
|
|
||||||
createOrUpdateCustomProperties: ["PATCH /orgs/{org}/properties/schema"],
|
|
||||||
createOrUpdateCustomPropertiesValuesForRepos: [
|
|
||||||
"PATCH /orgs/{org}/properties/values"
|
|
||||||
],
|
|
||||||
createOrUpdateCustomProperty: [
|
|
||||||
"PUT /orgs/{org}/properties/schema/{custom_property_name}"
|
|
||||||
],
|
|
||||||
createWebhook: ["POST /orgs/{org}/hooks"],
|
|
||||||
delete: ["DELETE /orgs/{org}"],
|
|
||||||
deleteAttestationsBulk: ["POST /orgs/{org}/attestations/delete-request"],
|
|
||||||
deleteAttestationsById: [
|
|
||||||
"DELETE /orgs/{org}/attestations/{attestation_id}"
|
|
||||||
],
|
|
||||||
deleteAttestationsBySubjectDigest: [
|
|
||||||
"DELETE /orgs/{org}/attestations/digest/{subject_digest}"
|
|
||||||
],
|
|
||||||
deleteIssueType: ["DELETE /orgs/{org}/issue-types/{issue_type_id}"],
|
|
||||||
deleteWebhook: ["DELETE /orgs/{org}/hooks/{hook_id}"],
|
|
||||||
get: ["GET /orgs/{org}"],
|
|
||||||
getAllCustomProperties: ["GET /orgs/{org}/properties/schema"],
|
|
||||||
getCustomProperty: [
|
|
||||||
"GET /orgs/{org}/properties/schema/{custom_property_name}"
|
|
||||||
],
|
|
||||||
getMembershipForAuthenticatedUser: ["GET /user/memberships/orgs/{org}"],
|
|
||||||
getMembershipForUser: ["GET /orgs/{org}/memberships/{username}"],
|
|
||||||
getOrgRole: ["GET /orgs/{org}/organization-roles/{role_id}"],
|
|
||||||
getOrgRulesetHistory: ["GET /orgs/{org}/rulesets/{ruleset_id}/history"],
|
|
||||||
getOrgRulesetVersion: [
|
|
||||||
"GET /orgs/{org}/rulesets/{ruleset_id}/history/{version_id}"
|
|
||||||
],
|
|
||||||
getWebhook: ["GET /orgs/{org}/hooks/{hook_id}"],
|
|
||||||
getWebhookConfigForOrg: ["GET /orgs/{org}/hooks/{hook_id}/config"],
|
|
||||||
getWebhookDelivery: [
|
|
||||||
"GET /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}"
|
|
||||||
],
|
|
||||||
list: ["GET /organizations"],
|
|
||||||
listAppInstallations: ["GET /orgs/{org}/installations"],
|
|
||||||
listArtifactStorageRecords: [
|
|
||||||
"GET /orgs/{org}/artifacts/{subject_digest}/metadata/storage-records"
|
|
||||||
],
|
|
||||||
listAttestations: ["GET /orgs/{org}/attestations/{subject_digest}"],
|
|
||||||
listAttestationsBulk: [
|
|
||||||
"POST /orgs/{org}/attestations/bulk-list{?per_page,before,after}"
|
|
||||||
],
|
|
||||||
listBlockedUsers: ["GET /orgs/{org}/blocks"],
|
|
||||||
listCustomPropertiesValuesForRepos: ["GET /orgs/{org}/properties/values"],
|
|
||||||
listFailedInvitations: ["GET /orgs/{org}/failed_invitations"],
|
|
||||||
listForAuthenticatedUser: ["GET /user/orgs"],
|
|
||||||
listForUser: ["GET /users/{username}/orgs"],
|
|
||||||
listInvitationTeams: ["GET /orgs/{org}/invitations/{invitation_id}/teams"],
|
|
||||||
listIssueTypes: ["GET /orgs/{org}/issue-types"],
|
|
||||||
listMembers: ["GET /orgs/{org}/members"],
|
|
||||||
listMembershipsForAuthenticatedUser: ["GET /user/memberships/orgs"],
|
|
||||||
listOrgRoleTeams: ["GET /orgs/{org}/organization-roles/{role_id}/teams"],
|
|
||||||
listOrgRoleUsers: ["GET /orgs/{org}/organization-roles/{role_id}/users"],
|
|
||||||
listOrgRoles: ["GET /orgs/{org}/organization-roles"],
|
|
||||||
listOrganizationFineGrainedPermissions: [
|
|
||||||
"GET /orgs/{org}/organization-fine-grained-permissions"
|
|
||||||
],
|
|
||||||
listOutsideCollaborators: ["GET /orgs/{org}/outside_collaborators"],
|
|
||||||
listPatGrantRepositories: [
|
|
||||||
"GET /orgs/{org}/personal-access-tokens/{pat_id}/repositories"
|
|
||||||
],
|
|
||||||
listPatGrantRequestRepositories: [
|
|
||||||
"GET /orgs/{org}/personal-access-token-requests/{pat_request_id}/repositories"
|
|
||||||
],
|
|
||||||
listPatGrantRequests: ["GET /orgs/{org}/personal-access-token-requests"],
|
|
||||||
listPatGrants: ["GET /orgs/{org}/personal-access-tokens"],
|
|
||||||
listPendingInvitations: ["GET /orgs/{org}/invitations"],
|
|
||||||
listPublicMembers: ["GET /orgs/{org}/public_members"],
|
|
||||||
listSecurityManagerTeams: [
|
|
||||||
"GET /orgs/{org}/security-managers",
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
deprecated: "octokit.rest.orgs.listSecurityManagerTeams() is deprecated, see https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
listWebhookDeliveries: ["GET /orgs/{org}/hooks/{hook_id}/deliveries"],
|
|
||||||
listWebhooks: ["GET /orgs/{org}/hooks"],
|
|
||||||
pingWebhook: ["POST /orgs/{org}/hooks/{hook_id}/pings"],
|
|
||||||
redeliverWebhookDelivery: [
|
|
||||||
"POST /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts"
|
|
||||||
],
|
|
||||||
removeCustomProperty: [
|
|
||||||
"DELETE /orgs/{org}/properties/schema/{custom_property_name}"
|
|
||||||
],
|
|
||||||
removeMember: ["DELETE /orgs/{org}/members/{username}"],
|
|
||||||
removeMembershipForUser: ["DELETE /orgs/{org}/memberships/{username}"],
|
|
||||||
removeOutsideCollaborator: [
|
|
||||||
"DELETE /orgs/{org}/outside_collaborators/{username}"
|
|
||||||
],
|
|
||||||
removePublicMembershipForAuthenticatedUser: [
|
|
||||||
"DELETE /orgs/{org}/public_members/{username}"
|
|
||||||
],
|
|
||||||
removeSecurityManagerTeam: [
|
|
||||||
"DELETE /orgs/{org}/security-managers/teams/{team_slug}",
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
deprecated: "octokit.rest.orgs.removeSecurityManagerTeam() is deprecated, see https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
reviewPatGrantRequest: [
|
|
||||||
"POST /orgs/{org}/personal-access-token-requests/{pat_request_id}"
|
|
||||||
],
|
|
||||||
reviewPatGrantRequestsInBulk: [
|
|
||||||
"POST /orgs/{org}/personal-access-token-requests"
|
|
||||||
],
|
|
||||||
revokeAllOrgRolesTeam: [
|
|
||||||
"DELETE /orgs/{org}/organization-roles/teams/{team_slug}"
|
|
||||||
],
|
|
||||||
revokeAllOrgRolesUser: [
|
|
||||||
"DELETE /orgs/{org}/organization-roles/users/{username}"
|
|
||||||
],
|
|
||||||
revokeOrgRoleTeam: [
|
|
||||||
"DELETE /orgs/{org}/organization-roles/teams/{team_slug}/{role_id}"
|
|
||||||
],
|
|
||||||
revokeOrgRoleUser: [
|
|
||||||
"DELETE /orgs/{org}/organization-roles/users/{username}/{role_id}"
|
|
||||||
],
|
|
||||||
setMembershipForUser: ["PUT /orgs/{org}/memberships/{username}"],
|
|
||||||
setPublicMembershipForAuthenticatedUser: [
|
|
||||||
"PUT /orgs/{org}/public_members/{username}"
|
|
||||||
],
|
|
||||||
unblockUser: ["DELETE /orgs/{org}/blocks/{username}"],
|
|
||||||
update: ["PATCH /orgs/{org}"],
|
|
||||||
updateIssueType: ["PUT /orgs/{org}/issue-types/{issue_type_id}"],
|
|
||||||
updateMembershipForAuthenticatedUser: [
|
|
||||||
"PATCH /user/memberships/orgs/{org}"
|
|
||||||
],
|
|
||||||
updatePatAccess: ["POST /orgs/{org}/personal-access-tokens/{pat_id}"],
|
|
||||||
updatePatAccesses: ["POST /orgs/{org}/personal-access-tokens"],
|
|
||||||
updateWebhook: ["PATCH /orgs/{org}/hooks/{hook_id}"],
|
|
||||||
updateWebhookConfigForOrg: ["PATCH /orgs/{org}/hooks/{hook_id}/config"]
|
|
||||||
},
|
|
||||||
packages: {
|
|
||||||
deletePackageForAuthenticatedUser: [
|
|
||||||
"DELETE /user/packages/{package_type}/{package_name}"
|
|
||||||
],
|
|
||||||
deletePackageForOrg: [
|
|
||||||
"DELETE /orgs/{org}/packages/{package_type}/{package_name}"
|
|
||||||
],
|
|
||||||
deletePackageForUser: [
|
|
||||||
"DELETE /users/{username}/packages/{package_type}/{package_name}"
|
|
||||||
],
|
|
||||||
deletePackageVersionForAuthenticatedUser: [
|
|
||||||
"DELETE /user/packages/{package_type}/{package_name}/versions/{package_version_id}"
|
|
||||||
],
|
|
||||||
deletePackageVersionForOrg: [
|
|
||||||
"DELETE /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}"
|
|
||||||
],
|
|
||||||
deletePackageVersionForUser: [
|
|
||||||
"DELETE /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}"
|
|
||||||
],
|
|
||||||
getAllPackageVersionsForAPackageOwnedByAnOrg: [
|
|
||||||
"GET /orgs/{org}/packages/{package_type}/{package_name}/versions",
|
|
||||||
{},
|
|
||||||
{ renamed: ["packages", "getAllPackageVersionsForPackageOwnedByOrg"] }
|
|
||||||
],
|
|
||||||
getAllPackageVersionsForAPackageOwnedByTheAuthenticatedUser: [
|
|
||||||
"GET /user/packages/{package_type}/{package_name}/versions",
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
renamed: [
|
|
||||||
"packages",
|
|
||||||
"getAllPackageVersionsForPackageOwnedByAuthenticatedUser"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
getAllPackageVersionsForPackageOwnedByAuthenticatedUser: [
|
|
||||||
"GET /user/packages/{package_type}/{package_name}/versions"
|
|
||||||
],
|
|
||||||
getAllPackageVersionsForPackageOwnedByOrg: [
|
|
||||||
"GET /orgs/{org}/packages/{package_type}/{package_name}/versions"
|
|
||||||
],
|
|
||||||
getAllPackageVersionsForPackageOwnedByUser: [
|
|
||||||
"GET /users/{username}/packages/{package_type}/{package_name}/versions"
|
|
||||||
],
|
|
||||||
getPackageForAuthenticatedUser: [
|
|
||||||
"GET /user/packages/{package_type}/{package_name}"
|
|
||||||
],
|
|
||||||
getPackageForOrganization: [
|
|
||||||
"GET /orgs/{org}/packages/{package_type}/{package_name}"
|
|
||||||
],
|
|
||||||
getPackageForUser: [
|
|
||||||
"GET /users/{username}/packages/{package_type}/{package_name}"
|
|
||||||
],
|
|
||||||
getPackageVersionForAuthenticatedUser: [
|
|
||||||
"GET /user/packages/{package_type}/{package_name}/versions/{package_version_id}"
|
|
||||||
],
|
|
||||||
getPackageVersionForOrganization: [
|
|
||||||
"GET /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}"
|
|
||||||
],
|
|
||||||
getPackageVersionForUser: [
|
|
||||||
"GET /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}"
|
|
||||||
],
|
|
||||||
listDockerMigrationConflictingPackagesForAuthenticatedUser: [
|
|
||||||
"GET /user/docker/conflicts"
|
|
||||||
],
|
|
||||||
listDockerMigrationConflictingPackagesForOrganization: [
|
|
||||||
"GET /orgs/{org}/docker/conflicts"
|
|
||||||
],
|
|
||||||
listDockerMigrationConflictingPackagesForUser: [
|
|
||||||
"GET /users/{username}/docker/conflicts"
|
|
||||||
],
|
|
||||||
listPackagesForAuthenticatedUser: ["GET /user/packages"],
|
|
||||||
listPackagesForOrganization: ["GET /orgs/{org}/packages"],
|
|
||||||
listPackagesForUser: ["GET /users/{username}/packages"],
|
|
||||||
restorePackageForAuthenticatedUser: [
|
|
||||||
"POST /user/packages/{package_type}/{package_name}/restore{?token}"
|
|
||||||
],
|
|
||||||
restorePackageForOrg: [
|
|
||||||
"POST /orgs/{org}/packages/{package_type}/{package_name}/restore{?token}"
|
|
||||||
],
|
|
||||||
restorePackageForUser: [
|
|
||||||
"POST /users/{username}/packages/{package_type}/{package_name}/restore{?token}"
|
|
||||||
],
|
|
||||||
restorePackageVersionForAuthenticatedUser: [
|
|
||||||
"POST /user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore"
|
|
||||||
],
|
|
||||||
restorePackageVersionForOrg: [
|
|
||||||
"POST /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore"
|
|
||||||
],
|
|
||||||
restorePackageVersionForUser: [
|
|
||||||
"POST /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
privateRegistries: {
|
|
||||||
createOrgPrivateRegistry: ["POST /orgs/{org}/private-registries"],
|
|
||||||
deleteOrgPrivateRegistry: [
|
|
||||||
"DELETE /orgs/{org}/private-registries/{secret_name}"
|
|
||||||
],
|
|
||||||
getOrgPrivateRegistry: ["GET /orgs/{org}/private-registries/{secret_name}"],
|
|
||||||
getOrgPublicKey: ["GET /orgs/{org}/private-registries/public-key"],
|
|
||||||
listOrgPrivateRegistries: ["GET /orgs/{org}/private-registries"],
|
|
||||||
updateOrgPrivateRegistry: [
|
|
||||||
"PATCH /orgs/{org}/private-registries/{secret_name}"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
projects: {
|
|
||||||
addItemForOrg: ["POST /orgs/{org}/projectsV2/{project_number}/items"],
|
|
||||||
addItemForUser: ["POST /users/{user_id}/projectsV2/{project_number}/items"],
|
|
||||||
deleteItemForOrg: [
|
|
||||||
"DELETE /orgs/{org}/projectsV2/{project_number}/items/{item_id}"
|
|
||||||
],
|
|
||||||
deleteItemForUser: [
|
|
||||||
"DELETE /users/{user_id}/projectsV2/{project_number}/items/{item_id}"
|
|
||||||
],
|
|
||||||
getFieldForOrg: [
|
|
||||||
"GET /orgs/{org}/projectsV2/{project_number}/fields/{field_id}"
|
|
||||||
],
|
|
||||||
getFieldForUser: [
|
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/fields/{field_id}"
|
|
||||||
],
|
|
||||||
getForOrg: ["GET /orgs/{org}/projectsV2/{project_number}"],
|
|
||||||
getForUser: ["GET /users/{user_id}/projectsV2/{project_number}"],
|
|
||||||
getOrgItem: ["GET /orgs/{org}/projectsV2/{project_number}/items/{item_id}"],
|
|
||||||
getUserItem: [
|
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/items/{item_id}"
|
|
||||||
],
|
|
||||||
listFieldsForOrg: ["GET /orgs/{org}/projectsV2/{project_number}/fields"],
|
|
||||||
listFieldsForUser: [
|
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/fields"
|
|
||||||
],
|
|
||||||
listForOrg: ["GET /orgs/{org}/projectsV2"],
|
|
||||||
listForUser: ["GET /users/{username}/projectsV2"],
|
|
||||||
listItemsForOrg: ["GET /orgs/{org}/projectsV2/{project_number}/items"],
|
|
||||||
listItemsForUser: [
|
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/items"
|
|
||||||
],
|
|
||||||
updateItemForOrg: [
|
|
||||||
"PATCH /orgs/{org}/projectsV2/{project_number}/items/{item_id}"
|
|
||||||
],
|
|
||||||
updateItemForUser: [
|
|
||||||
"PATCH /users/{user_id}/projectsV2/{project_number}/items/{item_id}"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
pulls: {
|
|
||||||
checkIfMerged: ["GET /repos/{owner}/{repo}/pulls/{pull_number}/merge"],
|
|
||||||
create: ["POST /repos/{owner}/{repo}/pulls"],
|
|
||||||
createReplyForReviewComment: [
|
|
||||||
"POST /repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies"
|
|
||||||
],
|
|
||||||
createReview: ["POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews"],
|
|
||||||
createReviewComment: [
|
|
||||||
"POST /repos/{owner}/{repo}/pulls/{pull_number}/comments"
|
|
||||||
],
|
|
||||||
deletePendingReview: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}"
|
|
||||||
],
|
|
||||||
deleteReviewComment: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}"
|
|
||||||
],
|
|
||||||
dismissReview: [
|
|
||||||
"PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals"
|
|
||||||
],
|
|
||||||
get: ["GET /repos/{owner}/{repo}/pulls/{pull_number}"],
|
|
||||||
getReview: [
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}"
|
|
||||||
],
|
|
||||||
getReviewComment: ["GET /repos/{owner}/{repo}/pulls/comments/{comment_id}"],
|
|
||||||
list: ["GET /repos/{owner}/{repo}/pulls"],
|
|
||||||
listCommentsForReview: [
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments"
|
|
||||||
],
|
|
||||||
listCommits: ["GET /repos/{owner}/{repo}/pulls/{pull_number}/commits"],
|
|
||||||
listFiles: ["GET /repos/{owner}/{repo}/pulls/{pull_number}/files"],
|
|
||||||
listRequestedReviewers: [
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers"
|
|
||||||
],
|
|
||||||
listReviewComments: [
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/{pull_number}/comments"
|
|
||||||
],
|
|
||||||
listReviewCommentsForRepo: ["GET /repos/{owner}/{repo}/pulls/comments"],
|
|
||||||
listReviews: ["GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews"],
|
|
||||||
merge: ["PUT /repos/{owner}/{repo}/pulls/{pull_number}/merge"],
|
|
||||||
removeRequestedReviewers: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers"
|
|
||||||
],
|
|
||||||
requestReviewers: [
|
|
||||||
"POST /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers"
|
|
||||||
],
|
|
||||||
submitReview: [
|
|
||||||
"POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events"
|
|
||||||
],
|
|
||||||
update: ["PATCH /repos/{owner}/{repo}/pulls/{pull_number}"],
|
|
||||||
updateBranch: [
|
|
||||||
"PUT /repos/{owner}/{repo}/pulls/{pull_number}/update-branch"
|
|
||||||
],
|
|
||||||
updateReview: [
|
|
||||||
"PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}"
|
|
||||||
],
|
|
||||||
updateReviewComment: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/pulls/comments/{comment_id}"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
rateLimit: { get: ["GET /rate_limit"] },
|
|
||||||
reactions: {
|
|
||||||
createForCommitComment: [
|
|
||||||
"POST /repos/{owner}/{repo}/comments/{comment_id}/reactions"
|
|
||||||
],
|
|
||||||
createForIssue: [
|
|
||||||
"POST /repos/{owner}/{repo}/issues/{issue_number}/reactions"
|
|
||||||
],
|
|
||||||
createForIssueComment: [
|
|
||||||
"POST /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions"
|
|
||||||
],
|
|
||||||
createForPullRequestReviewComment: [
|
|
||||||
"POST /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions"
|
|
||||||
],
|
|
||||||
createForRelease: [
|
|
||||||
"POST /repos/{owner}/{repo}/releases/{release_id}/reactions"
|
|
||||||
],
|
|
||||||
createForTeamDiscussionCommentInOrg: [
|
|
||||||
"POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions"
|
|
||||||
],
|
|
||||||
createForTeamDiscussionInOrg: [
|
|
||||||
"POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions"
|
|
||||||
],
|
|
||||||
deleteForCommitComment: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}"
|
|
||||||
],
|
|
||||||
deleteForIssue: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id}"
|
|
||||||
],
|
|
||||||
deleteForIssueComment: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}"
|
|
||||||
],
|
|
||||||
deleteForPullRequestComment: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}"
|
|
||||||
],
|
|
||||||
deleteForRelease: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}"
|
|
||||||
],
|
|
||||||
deleteForTeamDiscussion: [
|
|
||||||
"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id}"
|
|
||||||
],
|
|
||||||
deleteForTeamDiscussionComment: [
|
|
||||||
"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id}"
|
|
||||||
],
|
|
||||||
listForCommitComment: [
|
|
||||||
"GET /repos/{owner}/{repo}/comments/{comment_id}/reactions"
|
|
||||||
],
|
|
||||||
listForIssue: ["GET /repos/{owner}/{repo}/issues/{issue_number}/reactions"],
|
|
||||||
listForIssueComment: [
|
|
||||||
"GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions"
|
|
||||||
],
|
|
||||||
listForPullRequestReviewComment: [
|
|
||||||
"GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions"
|
|
||||||
],
|
|
||||||
listForRelease: [
|
|
||||||
"GET /repos/{owner}/{repo}/releases/{release_id}/reactions"
|
|
||||||
],
|
|
||||||
listForTeamDiscussionCommentInOrg: [
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions"
|
|
||||||
],
|
|
||||||
listForTeamDiscussionInOrg: [
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
repos: {
|
|
||||||
acceptInvitation: [
|
|
||||||
"PATCH /user/repository_invitations/{invitation_id}",
|
|
||||||
{},
|
|
||||||
{ renamed: ["repos", "acceptInvitationForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
acceptInvitationForAuthenticatedUser: [
|
|
||||||
"PATCH /user/repository_invitations/{invitation_id}"
|
|
||||||
],
|
|
||||||
addAppAccessRestrictions: [
|
|
||||||
"POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps",
|
|
||||||
{},
|
|
||||||
{ mapToData: "apps" }
|
|
||||||
],
|
|
||||||
addCollaborator: ["PUT /repos/{owner}/{repo}/collaborators/{username}"],
|
|
||||||
addStatusCheckContexts: [
|
|
||||||
"POST /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts",
|
|
||||||
{},
|
|
||||||
{ mapToData: "contexts" }
|
|
||||||
],
|
|
||||||
addTeamAccessRestrictions: [
|
|
||||||
"POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams",
|
|
||||||
{},
|
|
||||||
{ mapToData: "teams" }
|
|
||||||
],
|
|
||||||
addUserAccessRestrictions: [
|
|
||||||
"POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users",
|
|
||||||
{},
|
|
||||||
{ mapToData: "users" }
|
|
||||||
],
|
|
||||||
cancelPagesDeployment: [
|
|
||||||
"POST /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}/cancel"
|
|
||||||
],
|
|
||||||
checkAutomatedSecurityFixes: [
|
|
||||||
"GET /repos/{owner}/{repo}/automated-security-fixes"
|
|
||||||
],
|
|
||||||
checkCollaborator: ["GET /repos/{owner}/{repo}/collaborators/{username}"],
|
|
||||||
checkPrivateVulnerabilityReporting: [
|
|
||||||
"GET /repos/{owner}/{repo}/private-vulnerability-reporting"
|
|
||||||
],
|
|
||||||
checkVulnerabilityAlerts: [
|
|
||||||
"GET /repos/{owner}/{repo}/vulnerability-alerts"
|
|
||||||
],
|
|
||||||
codeownersErrors: ["GET /repos/{owner}/{repo}/codeowners/errors"],
|
|
||||||
compareCommits: ["GET /repos/{owner}/{repo}/compare/{base}...{head}"],
|
|
||||||
compareCommitsWithBasehead: [
|
|
||||||
"GET /repos/{owner}/{repo}/compare/{basehead}"
|
|
||||||
],
|
|
||||||
createAttestation: ["POST /repos/{owner}/{repo}/attestations"],
|
|
||||||
createAutolink: ["POST /repos/{owner}/{repo}/autolinks"],
|
|
||||||
createCommitComment: [
|
|
||||||
"POST /repos/{owner}/{repo}/commits/{commit_sha}/comments"
|
|
||||||
],
|
|
||||||
createCommitSignatureProtection: [
|
|
||||||
"POST /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures"
|
|
||||||
],
|
|
||||||
createCommitStatus: ["POST /repos/{owner}/{repo}/statuses/{sha}"],
|
|
||||||
createDeployKey: ["POST /repos/{owner}/{repo}/keys"],
|
|
||||||
createDeployment: ["POST /repos/{owner}/{repo}/deployments"],
|
|
||||||
createDeploymentBranchPolicy: [
|
|
||||||
"POST /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies"
|
|
||||||
],
|
|
||||||
createDeploymentProtectionRule: [
|
|
||||||
"POST /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules"
|
|
||||||
],
|
|
||||||
createDeploymentStatus: [
|
|
||||||
"POST /repos/{owner}/{repo}/deployments/{deployment_id}/statuses"
|
|
||||||
],
|
|
||||||
createDispatchEvent: ["POST /repos/{owner}/{repo}/dispatches"],
|
|
||||||
createForAuthenticatedUser: ["POST /user/repos"],
|
|
||||||
createFork: ["POST /repos/{owner}/{repo}/forks"],
|
|
||||||
createInOrg: ["POST /orgs/{org}/repos"],
|
|
||||||
createOrUpdateCustomPropertiesValues: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/properties/values"
|
|
||||||
],
|
|
||||||
createOrUpdateEnvironment: [
|
|
||||||
"PUT /repos/{owner}/{repo}/environments/{environment_name}"
|
|
||||||
],
|
|
||||||
createOrUpdateFileContents: ["PUT /repos/{owner}/{repo}/contents/{path}"],
|
|
||||||
createOrgRuleset: ["POST /orgs/{org}/rulesets"],
|
|
||||||
createPagesDeployment: ["POST /repos/{owner}/{repo}/pages/deployments"],
|
|
||||||
createPagesSite: ["POST /repos/{owner}/{repo}/pages"],
|
|
||||||
createRelease: ["POST /repos/{owner}/{repo}/releases"],
|
|
||||||
createRepoRuleset: ["POST /repos/{owner}/{repo}/rulesets"],
|
|
||||||
createUsingTemplate: [
|
|
||||||
"POST /repos/{template_owner}/{template_repo}/generate"
|
|
||||||
],
|
|
||||||
createWebhook: ["POST /repos/{owner}/{repo}/hooks"],
|
|
||||||
declineInvitation: [
|
|
||||||
"DELETE /user/repository_invitations/{invitation_id}",
|
|
||||||
{},
|
|
||||||
{ renamed: ["repos", "declineInvitationForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
declineInvitationForAuthenticatedUser: [
|
|
||||||
"DELETE /user/repository_invitations/{invitation_id}"
|
|
||||||
],
|
|
||||||
delete: ["DELETE /repos/{owner}/{repo}"],
|
|
||||||
deleteAccessRestrictions: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions"
|
|
||||||
],
|
|
||||||
deleteAdminBranchProtection: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins"
|
|
||||||
],
|
|
||||||
deleteAnEnvironment: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/environments/{environment_name}"
|
|
||||||
],
|
|
||||||
deleteAutolink: ["DELETE /repos/{owner}/{repo}/autolinks/{autolink_id}"],
|
|
||||||
deleteBranchProtection: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection"
|
|
||||||
],
|
|
||||||
deleteCommitComment: ["DELETE /repos/{owner}/{repo}/comments/{comment_id}"],
|
|
||||||
deleteCommitSignatureProtection: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures"
|
|
||||||
],
|
|
||||||
deleteDeployKey: ["DELETE /repos/{owner}/{repo}/keys/{key_id}"],
|
|
||||||
deleteDeployment: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/deployments/{deployment_id}"
|
|
||||||
],
|
|
||||||
deleteDeploymentBranchPolicy: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}"
|
|
||||||
],
|
|
||||||
deleteFile: ["DELETE /repos/{owner}/{repo}/contents/{path}"],
|
|
||||||
deleteInvitation: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/invitations/{invitation_id}"
|
|
||||||
],
|
|
||||||
deleteOrgRuleset: ["DELETE /orgs/{org}/rulesets/{ruleset_id}"],
|
|
||||||
deletePagesSite: ["DELETE /repos/{owner}/{repo}/pages"],
|
|
||||||
deletePullRequestReviewProtection: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews"
|
|
||||||
],
|
|
||||||
deleteRelease: ["DELETE /repos/{owner}/{repo}/releases/{release_id}"],
|
|
||||||
deleteReleaseAsset: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/releases/assets/{asset_id}"
|
|
||||||
],
|
|
||||||
deleteRepoRuleset: ["DELETE /repos/{owner}/{repo}/rulesets/{ruleset_id}"],
|
|
||||||
deleteWebhook: ["DELETE /repos/{owner}/{repo}/hooks/{hook_id}"],
|
|
||||||
disableAutomatedSecurityFixes: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/automated-security-fixes"
|
|
||||||
],
|
|
||||||
disableDeploymentProtectionRule: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}"
|
|
||||||
],
|
|
||||||
disablePrivateVulnerabilityReporting: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/private-vulnerability-reporting"
|
|
||||||
],
|
|
||||||
disableVulnerabilityAlerts: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/vulnerability-alerts"
|
|
||||||
],
|
|
||||||
downloadArchive: [
|
|
||||||
"GET /repos/{owner}/{repo}/zipball/{ref}",
|
|
||||||
{},
|
|
||||||
{ renamed: ["repos", "downloadZipballArchive"] }
|
|
||||||
],
|
|
||||||
downloadTarballArchive: ["GET /repos/{owner}/{repo}/tarball/{ref}"],
|
|
||||||
downloadZipballArchive: ["GET /repos/{owner}/{repo}/zipball/{ref}"],
|
|
||||||
enableAutomatedSecurityFixes: [
|
|
||||||
"PUT /repos/{owner}/{repo}/automated-security-fixes"
|
|
||||||
],
|
|
||||||
enablePrivateVulnerabilityReporting: [
|
|
||||||
"PUT /repos/{owner}/{repo}/private-vulnerability-reporting"
|
|
||||||
],
|
|
||||||
enableVulnerabilityAlerts: [
|
|
||||||
"PUT /repos/{owner}/{repo}/vulnerability-alerts"
|
|
||||||
],
|
|
||||||
generateReleaseNotes: [
|
|
||||||
"POST /repos/{owner}/{repo}/releases/generate-notes"
|
|
||||||
],
|
|
||||||
get: ["GET /repos/{owner}/{repo}"],
|
|
||||||
getAccessRestrictions: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions"
|
|
||||||
],
|
|
||||||
getAdminBranchProtection: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins"
|
|
||||||
],
|
|
||||||
getAllDeploymentProtectionRules: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules"
|
|
||||||
],
|
|
||||||
getAllEnvironments: ["GET /repos/{owner}/{repo}/environments"],
|
|
||||||
getAllStatusCheckContexts: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts"
|
|
||||||
],
|
|
||||||
getAllTopics: ["GET /repos/{owner}/{repo}/topics"],
|
|
||||||
getAppsWithAccessToProtectedBranch: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps"
|
|
||||||
],
|
|
||||||
getAutolink: ["GET /repos/{owner}/{repo}/autolinks/{autolink_id}"],
|
|
||||||
getBranch: ["GET /repos/{owner}/{repo}/branches/{branch}"],
|
|
||||||
getBranchProtection: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection"
|
|
||||||
],
|
|
||||||
getBranchRules: ["GET /repos/{owner}/{repo}/rules/branches/{branch}"],
|
|
||||||
getClones: ["GET /repos/{owner}/{repo}/traffic/clones"],
|
|
||||||
getCodeFrequencyStats: ["GET /repos/{owner}/{repo}/stats/code_frequency"],
|
|
||||||
getCollaboratorPermissionLevel: [
|
|
||||||
"GET /repos/{owner}/{repo}/collaborators/{username}/permission"
|
|
||||||
],
|
|
||||||
getCombinedStatusForRef: ["GET /repos/{owner}/{repo}/commits/{ref}/status"],
|
|
||||||
getCommit: ["GET /repos/{owner}/{repo}/commits/{ref}"],
|
|
||||||
getCommitActivityStats: ["GET /repos/{owner}/{repo}/stats/commit_activity"],
|
|
||||||
getCommitComment: ["GET /repos/{owner}/{repo}/comments/{comment_id}"],
|
|
||||||
getCommitSignatureProtection: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures"
|
|
||||||
],
|
|
||||||
getCommunityProfileMetrics: ["GET /repos/{owner}/{repo}/community/profile"],
|
|
||||||
getContent: ["GET /repos/{owner}/{repo}/contents/{path}"],
|
|
||||||
getContributorsStats: ["GET /repos/{owner}/{repo}/stats/contributors"],
|
|
||||||
getCustomDeploymentProtectionRule: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}"
|
|
||||||
],
|
|
||||||
getCustomPropertiesValues: ["GET /repos/{owner}/{repo}/properties/values"],
|
|
||||||
getDeployKey: ["GET /repos/{owner}/{repo}/keys/{key_id}"],
|
|
||||||
getDeployment: ["GET /repos/{owner}/{repo}/deployments/{deployment_id}"],
|
|
||||||
getDeploymentBranchPolicy: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}"
|
|
||||||
],
|
|
||||||
getDeploymentStatus: [
|
|
||||||
"GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}"
|
|
||||||
],
|
|
||||||
getEnvironment: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}"
|
|
||||||
],
|
|
||||||
getLatestPagesBuild: ["GET /repos/{owner}/{repo}/pages/builds/latest"],
|
|
||||||
getLatestRelease: ["GET /repos/{owner}/{repo}/releases/latest"],
|
|
||||||
getOrgRuleSuite: ["GET /orgs/{org}/rulesets/rule-suites/{rule_suite_id}"],
|
|
||||||
getOrgRuleSuites: ["GET /orgs/{org}/rulesets/rule-suites"],
|
|
||||||
getOrgRuleset: ["GET /orgs/{org}/rulesets/{ruleset_id}"],
|
|
||||||
getOrgRulesets: ["GET /orgs/{org}/rulesets"],
|
|
||||||
getPages: ["GET /repos/{owner}/{repo}/pages"],
|
|
||||||
getPagesBuild: ["GET /repos/{owner}/{repo}/pages/builds/{build_id}"],
|
|
||||||
getPagesDeployment: [
|
|
||||||
"GET /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}"
|
|
||||||
],
|
|
||||||
getPagesHealthCheck: ["GET /repos/{owner}/{repo}/pages/health"],
|
|
||||||
getParticipationStats: ["GET /repos/{owner}/{repo}/stats/participation"],
|
|
||||||
getPullRequestReviewProtection: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews"
|
|
||||||
],
|
|
||||||
getPunchCardStats: ["GET /repos/{owner}/{repo}/stats/punch_card"],
|
|
||||||
getReadme: ["GET /repos/{owner}/{repo}/readme"],
|
|
||||||
getReadmeInDirectory: ["GET /repos/{owner}/{repo}/readme/{dir}"],
|
|
||||||
getRelease: ["GET /repos/{owner}/{repo}/releases/{release_id}"],
|
|
||||||
getReleaseAsset: ["GET /repos/{owner}/{repo}/releases/assets/{asset_id}"],
|
|
||||||
getReleaseByTag: ["GET /repos/{owner}/{repo}/releases/tags/{tag}"],
|
|
||||||
getRepoRuleSuite: [
|
|
||||||
"GET /repos/{owner}/{repo}/rulesets/rule-suites/{rule_suite_id}"
|
|
||||||
],
|
|
||||||
getRepoRuleSuites: ["GET /repos/{owner}/{repo}/rulesets/rule-suites"],
|
|
||||||
getRepoRuleset: ["GET /repos/{owner}/{repo}/rulesets/{ruleset_id}"],
|
|
||||||
getRepoRulesetHistory: [
|
|
||||||
"GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history"
|
|
||||||
],
|
|
||||||
getRepoRulesetVersion: [
|
|
||||||
"GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history/{version_id}"
|
|
||||||
],
|
|
||||||
getRepoRulesets: ["GET /repos/{owner}/{repo}/rulesets"],
|
|
||||||
getStatusChecksProtection: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks"
|
|
||||||
],
|
|
||||||
getTeamsWithAccessToProtectedBranch: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams"
|
|
||||||
],
|
|
||||||
getTopPaths: ["GET /repos/{owner}/{repo}/traffic/popular/paths"],
|
|
||||||
getTopReferrers: ["GET /repos/{owner}/{repo}/traffic/popular/referrers"],
|
|
||||||
getUsersWithAccessToProtectedBranch: [
|
|
||||||
"GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users"
|
|
||||||
],
|
|
||||||
getViews: ["GET /repos/{owner}/{repo}/traffic/views"],
|
|
||||||
getWebhook: ["GET /repos/{owner}/{repo}/hooks/{hook_id}"],
|
|
||||||
getWebhookConfigForRepo: [
|
|
||||||
"GET /repos/{owner}/{repo}/hooks/{hook_id}/config"
|
|
||||||
],
|
|
||||||
getWebhookDelivery: [
|
|
||||||
"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}"
|
|
||||||
],
|
|
||||||
listActivities: ["GET /repos/{owner}/{repo}/activity"],
|
|
||||||
listAttestations: [
|
|
||||||
"GET /repos/{owner}/{repo}/attestations/{subject_digest}"
|
|
||||||
],
|
|
||||||
listAutolinks: ["GET /repos/{owner}/{repo}/autolinks"],
|
|
||||||
listBranches: ["GET /repos/{owner}/{repo}/branches"],
|
|
||||||
listBranchesForHeadCommit: [
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head"
|
|
||||||
],
|
|
||||||
listCollaborators: ["GET /repos/{owner}/{repo}/collaborators"],
|
|
||||||
listCommentsForCommit: [
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{commit_sha}/comments"
|
|
||||||
],
|
|
||||||
listCommitCommentsForRepo: ["GET /repos/{owner}/{repo}/comments"],
|
|
||||||
listCommitStatusesForRef: [
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{ref}/statuses"
|
|
||||||
],
|
|
||||||
listCommits: ["GET /repos/{owner}/{repo}/commits"],
|
|
||||||
listContributors: ["GET /repos/{owner}/{repo}/contributors"],
|
|
||||||
listCustomDeploymentRuleIntegrations: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/apps"
|
|
||||||
],
|
|
||||||
listDeployKeys: ["GET /repos/{owner}/{repo}/keys"],
|
|
||||||
listDeploymentBranchPolicies: [
|
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies"
|
|
||||||
],
|
|
||||||
listDeploymentStatuses: [
|
|
||||||
"GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses"
|
|
||||||
],
|
|
||||||
listDeployments: ["GET /repos/{owner}/{repo}/deployments"],
|
|
||||||
listForAuthenticatedUser: ["GET /user/repos"],
|
|
||||||
listForOrg: ["GET /orgs/{org}/repos"],
|
|
||||||
listForUser: ["GET /users/{username}/repos"],
|
|
||||||
listForks: ["GET /repos/{owner}/{repo}/forks"],
|
|
||||||
listInvitations: ["GET /repos/{owner}/{repo}/invitations"],
|
|
||||||
listInvitationsForAuthenticatedUser: ["GET /user/repository_invitations"],
|
|
||||||
listLanguages: ["GET /repos/{owner}/{repo}/languages"],
|
|
||||||
listPagesBuilds: ["GET /repos/{owner}/{repo}/pages/builds"],
|
|
||||||
listPublic: ["GET /repositories"],
|
|
||||||
listPullRequestsAssociatedWithCommit: [
|
|
||||||
"GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls"
|
|
||||||
],
|
|
||||||
listReleaseAssets: [
|
|
||||||
"GET /repos/{owner}/{repo}/releases/{release_id}/assets"
|
|
||||||
],
|
|
||||||
listReleases: ["GET /repos/{owner}/{repo}/releases"],
|
|
||||||
listTags: ["GET /repos/{owner}/{repo}/tags"],
|
|
||||||
listTeams: ["GET /repos/{owner}/{repo}/teams"],
|
|
||||||
listWebhookDeliveries: [
|
|
||||||
"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries"
|
|
||||||
],
|
|
||||||
listWebhooks: ["GET /repos/{owner}/{repo}/hooks"],
|
|
||||||
merge: ["POST /repos/{owner}/{repo}/merges"],
|
|
||||||
mergeUpstream: ["POST /repos/{owner}/{repo}/merge-upstream"],
|
|
||||||
pingWebhook: ["POST /repos/{owner}/{repo}/hooks/{hook_id}/pings"],
|
|
||||||
redeliverWebhookDelivery: [
|
|
||||||
"POST /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts"
|
|
||||||
],
|
|
||||||
removeAppAccessRestrictions: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps",
|
|
||||||
{},
|
|
||||||
{ mapToData: "apps" }
|
|
||||||
],
|
|
||||||
removeCollaborator: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/collaborators/{username}"
|
|
||||||
],
|
|
||||||
removeStatusCheckContexts: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts",
|
|
||||||
{},
|
|
||||||
{ mapToData: "contexts" }
|
|
||||||
],
|
|
||||||
removeStatusCheckProtection: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks"
|
|
||||||
],
|
|
||||||
removeTeamAccessRestrictions: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams",
|
|
||||||
{},
|
|
||||||
{ mapToData: "teams" }
|
|
||||||
],
|
|
||||||
removeUserAccessRestrictions: [
|
|
||||||
"DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users",
|
|
||||||
{},
|
|
||||||
{ mapToData: "users" }
|
|
||||||
],
|
|
||||||
renameBranch: ["POST /repos/{owner}/{repo}/branches/{branch}/rename"],
|
|
||||||
replaceAllTopics: ["PUT /repos/{owner}/{repo}/topics"],
|
|
||||||
requestPagesBuild: ["POST /repos/{owner}/{repo}/pages/builds"],
|
|
||||||
setAdminBranchProtection: [
|
|
||||||
"POST /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins"
|
|
||||||
],
|
|
||||||
setAppAccessRestrictions: [
|
|
||||||
"PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps",
|
|
||||||
{},
|
|
||||||
{ mapToData: "apps" }
|
|
||||||
],
|
|
||||||
setStatusCheckContexts: [
|
|
||||||
"PUT /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts",
|
|
||||||
{},
|
|
||||||
{ mapToData: "contexts" }
|
|
||||||
],
|
|
||||||
setTeamAccessRestrictions: [
|
|
||||||
"PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams",
|
|
||||||
{},
|
|
||||||
{ mapToData: "teams" }
|
|
||||||
],
|
|
||||||
setUserAccessRestrictions: [
|
|
||||||
"PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users",
|
|
||||||
{},
|
|
||||||
{ mapToData: "users" }
|
|
||||||
],
|
|
||||||
testPushWebhook: ["POST /repos/{owner}/{repo}/hooks/{hook_id}/tests"],
|
|
||||||
transfer: ["POST /repos/{owner}/{repo}/transfer"],
|
|
||||||
update: ["PATCH /repos/{owner}/{repo}"],
|
|
||||||
updateBranchProtection: [
|
|
||||||
"PUT /repos/{owner}/{repo}/branches/{branch}/protection"
|
|
||||||
],
|
|
||||||
updateCommitComment: ["PATCH /repos/{owner}/{repo}/comments/{comment_id}"],
|
|
||||||
updateDeploymentBranchPolicy: [
|
|
||||||
"PUT /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}"
|
|
||||||
],
|
|
||||||
updateInformationAboutPagesSite: ["PUT /repos/{owner}/{repo}/pages"],
|
|
||||||
updateInvitation: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/invitations/{invitation_id}"
|
|
||||||
],
|
|
||||||
updateOrgRuleset: ["PUT /orgs/{org}/rulesets/{ruleset_id}"],
|
|
||||||
updatePullRequestReviewProtection: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews"
|
|
||||||
],
|
|
||||||
updateRelease: ["PATCH /repos/{owner}/{repo}/releases/{release_id}"],
|
|
||||||
updateReleaseAsset: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/releases/assets/{asset_id}"
|
|
||||||
],
|
|
||||||
updateRepoRuleset: ["PUT /repos/{owner}/{repo}/rulesets/{ruleset_id}"],
|
|
||||||
updateStatusCheckPotection: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks",
|
|
||||||
{},
|
|
||||||
{ renamed: ["repos", "updateStatusCheckProtection"] }
|
|
||||||
],
|
|
||||||
updateStatusCheckProtection: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks"
|
|
||||||
],
|
|
||||||
updateWebhook: ["PATCH /repos/{owner}/{repo}/hooks/{hook_id}"],
|
|
||||||
updateWebhookConfigForRepo: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/hooks/{hook_id}/config"
|
|
||||||
],
|
|
||||||
uploadReleaseAsset: [
|
|
||||||
"POST /repos/{owner}/{repo}/releases/{release_id}/assets{?name,label}",
|
|
||||||
{ baseUrl: "https://uploads.github.com" }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
search: {
|
|
||||||
code: ["GET /search/code"],
|
|
||||||
commits: ["GET /search/commits"],
|
|
||||||
issuesAndPullRequests: [
|
|
||||||
"GET /search/issues",
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
deprecated: "octokit.rest.search.issuesAndPullRequests() is deprecated, see https://docs.github.com/rest/search/search#search-issues-and-pull-requests"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
labels: ["GET /search/labels"],
|
|
||||||
repos: ["GET /search/repositories"],
|
|
||||||
topics: ["GET /search/topics"],
|
|
||||||
users: ["GET /search/users"]
|
|
||||||
},
|
|
||||||
secretScanning: {
|
|
||||||
createPushProtectionBypass: [
|
|
||||||
"POST /repos/{owner}/{repo}/secret-scanning/push-protection-bypasses"
|
|
||||||
],
|
|
||||||
getAlert: [
|
|
||||||
"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}"
|
|
||||||
],
|
|
||||||
getScanHistory: ["GET /repos/{owner}/{repo}/secret-scanning/scan-history"],
|
|
||||||
listAlertsForEnterprise: [
|
|
||||||
"GET /enterprises/{enterprise}/secret-scanning/alerts"
|
|
||||||
],
|
|
||||||
listAlertsForOrg: ["GET /orgs/{org}/secret-scanning/alerts"],
|
|
||||||
listAlertsForRepo: ["GET /repos/{owner}/{repo}/secret-scanning/alerts"],
|
|
||||||
listLocationsForAlert: [
|
|
||||||
"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations"
|
|
||||||
],
|
|
||||||
listOrgPatternConfigs: [
|
|
||||||
"GET /orgs/{org}/secret-scanning/pattern-configurations"
|
|
||||||
],
|
|
||||||
updateAlert: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}"
|
|
||||||
],
|
|
||||||
updateOrgPatternConfigs: [
|
|
||||||
"PATCH /orgs/{org}/secret-scanning/pattern-configurations"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
securityAdvisories: {
|
|
||||||
createFork: [
|
|
||||||
"POST /repos/{owner}/{repo}/security-advisories/{ghsa_id}/forks"
|
|
||||||
],
|
|
||||||
createPrivateVulnerabilityReport: [
|
|
||||||
"POST /repos/{owner}/{repo}/security-advisories/reports"
|
|
||||||
],
|
|
||||||
createRepositoryAdvisory: [
|
|
||||||
"POST /repos/{owner}/{repo}/security-advisories"
|
|
||||||
],
|
|
||||||
createRepositoryAdvisoryCveRequest: [
|
|
||||||
"POST /repos/{owner}/{repo}/security-advisories/{ghsa_id}/cve"
|
|
||||||
],
|
|
||||||
getGlobalAdvisory: ["GET /advisories/{ghsa_id}"],
|
|
||||||
getRepositoryAdvisory: [
|
|
||||||
"GET /repos/{owner}/{repo}/security-advisories/{ghsa_id}"
|
|
||||||
],
|
|
||||||
listGlobalAdvisories: ["GET /advisories"],
|
|
||||||
listOrgRepositoryAdvisories: ["GET /orgs/{org}/security-advisories"],
|
|
||||||
listRepositoryAdvisories: ["GET /repos/{owner}/{repo}/security-advisories"],
|
|
||||||
updateRepositoryAdvisory: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/security-advisories/{ghsa_id}"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
teams: {
|
|
||||||
addOrUpdateMembershipForUserInOrg: [
|
|
||||||
"PUT /orgs/{org}/teams/{team_slug}/memberships/{username}"
|
|
||||||
],
|
|
||||||
addOrUpdateRepoPermissionsInOrg: [
|
|
||||||
"PUT /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}"
|
|
||||||
],
|
|
||||||
checkPermissionsForRepoInOrg: [
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}"
|
|
||||||
],
|
|
||||||
create: ["POST /orgs/{org}/teams"],
|
|
||||||
createDiscussionCommentInOrg: [
|
|
||||||
"POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments"
|
|
||||||
],
|
|
||||||
createDiscussionInOrg: ["POST /orgs/{org}/teams/{team_slug}/discussions"],
|
|
||||||
deleteDiscussionCommentInOrg: [
|
|
||||||
"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}"
|
|
||||||
],
|
|
||||||
deleteDiscussionInOrg: [
|
|
||||||
"DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}"
|
|
||||||
],
|
|
||||||
deleteInOrg: ["DELETE /orgs/{org}/teams/{team_slug}"],
|
|
||||||
getByName: ["GET /orgs/{org}/teams/{team_slug}"],
|
|
||||||
getDiscussionCommentInOrg: [
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}"
|
|
||||||
],
|
|
||||||
getDiscussionInOrg: [
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}"
|
|
||||||
],
|
|
||||||
getMembershipForUserInOrg: [
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/memberships/{username}"
|
|
||||||
],
|
|
||||||
list: ["GET /orgs/{org}/teams"],
|
|
||||||
listChildInOrg: ["GET /orgs/{org}/teams/{team_slug}/teams"],
|
|
||||||
listDiscussionCommentsInOrg: [
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments"
|
|
||||||
],
|
|
||||||
listDiscussionsInOrg: ["GET /orgs/{org}/teams/{team_slug}/discussions"],
|
|
||||||
listForAuthenticatedUser: ["GET /user/teams"],
|
|
||||||
listMembersInOrg: ["GET /orgs/{org}/teams/{team_slug}/members"],
|
|
||||||
listPendingInvitationsInOrg: [
|
|
||||||
"GET /orgs/{org}/teams/{team_slug}/invitations"
|
|
||||||
],
|
|
||||||
listReposInOrg: ["GET /orgs/{org}/teams/{team_slug}/repos"],
|
|
||||||
removeMembershipForUserInOrg: [
|
|
||||||
"DELETE /orgs/{org}/teams/{team_slug}/memberships/{username}"
|
|
||||||
],
|
|
||||||
removeRepoInOrg: [
|
|
||||||
"DELETE /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}"
|
|
||||||
],
|
|
||||||
updateDiscussionCommentInOrg: [
|
|
||||||
"PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}"
|
|
||||||
],
|
|
||||||
updateDiscussionInOrg: [
|
|
||||||
"PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}"
|
|
||||||
],
|
|
||||||
updateInOrg: ["PATCH /orgs/{org}/teams/{team_slug}"]
|
|
||||||
},
|
|
||||||
users: {
|
|
||||||
addEmailForAuthenticated: [
|
|
||||||
"POST /user/emails",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "addEmailForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
addEmailForAuthenticatedUser: ["POST /user/emails"],
|
|
||||||
addSocialAccountForAuthenticatedUser: ["POST /user/social_accounts"],
|
|
||||||
block: ["PUT /user/blocks/{username}"],
|
|
||||||
checkBlocked: ["GET /user/blocks/{username}"],
|
|
||||||
checkFollowingForUser: ["GET /users/{username}/following/{target_user}"],
|
|
||||||
checkPersonIsFollowedByAuthenticated: ["GET /user/following/{username}"],
|
|
||||||
createGpgKeyForAuthenticated: [
|
|
||||||
"POST /user/gpg_keys",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "createGpgKeyForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
createGpgKeyForAuthenticatedUser: ["POST /user/gpg_keys"],
|
|
||||||
createPublicSshKeyForAuthenticated: [
|
|
||||||
"POST /user/keys",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "createPublicSshKeyForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
createPublicSshKeyForAuthenticatedUser: ["POST /user/keys"],
|
|
||||||
createSshSigningKeyForAuthenticatedUser: ["POST /user/ssh_signing_keys"],
|
|
||||||
deleteAttestationsBulk: [
|
|
||||||
"POST /users/{username}/attestations/delete-request"
|
|
||||||
],
|
|
||||||
deleteAttestationsById: [
|
|
||||||
"DELETE /users/{username}/attestations/{attestation_id}"
|
|
||||||
],
|
|
||||||
deleteAttestationsBySubjectDigest: [
|
|
||||||
"DELETE /users/{username}/attestations/digest/{subject_digest}"
|
|
||||||
],
|
|
||||||
deleteEmailForAuthenticated: [
|
|
||||||
"DELETE /user/emails",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "deleteEmailForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
deleteEmailForAuthenticatedUser: ["DELETE /user/emails"],
|
|
||||||
deleteGpgKeyForAuthenticated: [
|
|
||||||
"DELETE /user/gpg_keys/{gpg_key_id}",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "deleteGpgKeyForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
deleteGpgKeyForAuthenticatedUser: ["DELETE /user/gpg_keys/{gpg_key_id}"],
|
|
||||||
deletePublicSshKeyForAuthenticated: [
|
|
||||||
"DELETE /user/keys/{key_id}",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "deletePublicSshKeyForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
deletePublicSshKeyForAuthenticatedUser: ["DELETE /user/keys/{key_id}"],
|
|
||||||
deleteSocialAccountForAuthenticatedUser: ["DELETE /user/social_accounts"],
|
|
||||||
deleteSshSigningKeyForAuthenticatedUser: [
|
|
||||||
"DELETE /user/ssh_signing_keys/{ssh_signing_key_id}"
|
|
||||||
],
|
|
||||||
follow: ["PUT /user/following/{username}"],
|
|
||||||
getAuthenticated: ["GET /user"],
|
|
||||||
getById: ["GET /user/{account_id}"],
|
|
||||||
getByUsername: ["GET /users/{username}"],
|
|
||||||
getContextForUser: ["GET /users/{username}/hovercard"],
|
|
||||||
getGpgKeyForAuthenticated: [
|
|
||||||
"GET /user/gpg_keys/{gpg_key_id}",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "getGpgKeyForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
getGpgKeyForAuthenticatedUser: ["GET /user/gpg_keys/{gpg_key_id}"],
|
|
||||||
getPublicSshKeyForAuthenticated: [
|
|
||||||
"GET /user/keys/{key_id}",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "getPublicSshKeyForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
getPublicSshKeyForAuthenticatedUser: ["GET /user/keys/{key_id}"],
|
|
||||||
getSshSigningKeyForAuthenticatedUser: [
|
|
||||||
"GET /user/ssh_signing_keys/{ssh_signing_key_id}"
|
|
||||||
],
|
|
||||||
list: ["GET /users"],
|
|
||||||
listAttestations: ["GET /users/{username}/attestations/{subject_digest}"],
|
|
||||||
listAttestationsBulk: [
|
|
||||||
"POST /users/{username}/attestations/bulk-list{?per_page,before,after}"
|
|
||||||
],
|
|
||||||
listBlockedByAuthenticated: [
|
|
||||||
"GET /user/blocks",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "listBlockedByAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
listBlockedByAuthenticatedUser: ["GET /user/blocks"],
|
|
||||||
listEmailsForAuthenticated: [
|
|
||||||
"GET /user/emails",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "listEmailsForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
listEmailsForAuthenticatedUser: ["GET /user/emails"],
|
|
||||||
listFollowedByAuthenticated: [
|
|
||||||
"GET /user/following",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "listFollowedByAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
listFollowedByAuthenticatedUser: ["GET /user/following"],
|
|
||||||
listFollowersForAuthenticatedUser: ["GET /user/followers"],
|
|
||||||
listFollowersForUser: ["GET /users/{username}/followers"],
|
|
||||||
listFollowingForUser: ["GET /users/{username}/following"],
|
|
||||||
listGpgKeysForAuthenticated: [
|
|
||||||
"GET /user/gpg_keys",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "listGpgKeysForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
listGpgKeysForAuthenticatedUser: ["GET /user/gpg_keys"],
|
|
||||||
listGpgKeysForUser: ["GET /users/{username}/gpg_keys"],
|
|
||||||
listPublicEmailsForAuthenticated: [
|
|
||||||
"GET /user/public_emails",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "listPublicEmailsForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
listPublicEmailsForAuthenticatedUser: ["GET /user/public_emails"],
|
|
||||||
listPublicKeysForUser: ["GET /users/{username}/keys"],
|
|
||||||
listPublicSshKeysForAuthenticated: [
|
|
||||||
"GET /user/keys",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "listPublicSshKeysForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
listPublicSshKeysForAuthenticatedUser: ["GET /user/keys"],
|
|
||||||
listSocialAccountsForAuthenticatedUser: ["GET /user/social_accounts"],
|
|
||||||
listSocialAccountsForUser: ["GET /users/{username}/social_accounts"],
|
|
||||||
listSshSigningKeysForAuthenticatedUser: ["GET /user/ssh_signing_keys"],
|
|
||||||
listSshSigningKeysForUser: ["GET /users/{username}/ssh_signing_keys"],
|
|
||||||
setPrimaryEmailVisibilityForAuthenticated: [
|
|
||||||
"PATCH /user/email/visibility",
|
|
||||||
{},
|
|
||||||
{ renamed: ["users", "setPrimaryEmailVisibilityForAuthenticatedUser"] }
|
|
||||||
],
|
|
||||||
setPrimaryEmailVisibilityForAuthenticatedUser: [
|
|
||||||
"PATCH /user/email/visibility"
|
|
||||||
],
|
|
||||||
unblock: ["DELETE /user/blocks/{username}"],
|
|
||||||
unfollow: ["DELETE /user/following/{username}"],
|
|
||||||
updateAuthenticated: ["PATCH /user"]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
var endpoints_default = Endpoints;
|
|
||||||
|
|
||||||
//# sourceMappingURL=endpoints.js.map
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/endpoints-to-methods.js
|
|
||||||
|
|
||||||
const endpointMethodsMap = /* @__PURE__ */ new Map();
|
|
||||||
for (const [scope, endpoints] of Object.entries(endpoints_default)) {
|
|
||||||
for (const [methodName, endpoint] of Object.entries(endpoints)) {
|
|
||||||
const [route, defaults, decorations] = endpoint;
|
|
||||||
const [method, url] = route.split(/ /);
|
|
||||||
const endpointDefaults = Object.assign(
|
|
||||||
{
|
|
||||||
method,
|
|
||||||
url
|
|
||||||
},
|
|
||||||
defaults
|
|
||||||
);
|
|
||||||
if (!endpointMethodsMap.has(scope)) {
|
|
||||||
endpointMethodsMap.set(scope, /* @__PURE__ */ new Map());
|
|
||||||
}
|
|
||||||
endpointMethodsMap.get(scope).set(methodName, {
|
|
||||||
scope,
|
|
||||||
methodName,
|
|
||||||
endpointDefaults,
|
|
||||||
decorations
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const handler = {
|
|
||||||
has({ scope }, methodName) {
|
|
||||||
return endpointMethodsMap.get(scope).has(methodName);
|
|
||||||
},
|
|
||||||
getOwnPropertyDescriptor(target, methodName) {
|
|
||||||
return {
|
|
||||||
value: this.get(target, methodName),
|
|
||||||
// ensures method is in the cache
|
|
||||||
configurable: true,
|
|
||||||
writable: true,
|
|
||||||
enumerable: true
|
|
||||||
};
|
|
||||||
},
|
|
||||||
defineProperty(target, methodName, descriptor) {
|
|
||||||
Object.defineProperty(target.cache, methodName, descriptor);
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
deleteProperty(target, methodName) {
|
|
||||||
delete target.cache[methodName];
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
ownKeys({ scope }) {
|
|
||||||
return [...endpointMethodsMap.get(scope).keys()];
|
|
||||||
},
|
|
||||||
set(target, methodName, value) {
|
|
||||||
return target.cache[methodName] = value;
|
|
||||||
},
|
|
||||||
get({ octokit, scope, cache }, methodName) {
|
|
||||||
if (cache[methodName]) {
|
|
||||||
return cache[methodName];
|
|
||||||
}
|
|
||||||
const method = endpointMethodsMap.get(scope).get(methodName);
|
|
||||||
if (!method) {
|
|
||||||
return void 0;
|
|
||||||
}
|
|
||||||
const { endpointDefaults, decorations } = method;
|
|
||||||
if (decorations) {
|
|
||||||
cache[methodName] = decorate(
|
|
||||||
octokit,
|
|
||||||
scope,
|
|
||||||
methodName,
|
|
||||||
endpointDefaults,
|
|
||||||
decorations
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
cache[methodName] = octokit.request.defaults(endpointDefaults);
|
|
||||||
}
|
|
||||||
return cache[methodName];
|
|
||||||
}
|
|
||||||
};
|
|
||||||
function endpointsToMethods(octokit) {
|
|
||||||
const newMethods = {};
|
|
||||||
for (const scope of endpointMethodsMap.keys()) {
|
|
||||||
newMethods[scope] = new Proxy({ octokit, scope, cache: {} }, handler);
|
|
||||||
}
|
|
||||||
return newMethods;
|
|
||||||
}
|
|
||||||
function decorate(octokit, scope, methodName, defaults, decorations) {
|
|
||||||
const requestWithDefaults = octokit.request.defaults(defaults);
|
|
||||||
function withDecorations(...args) {
|
|
||||||
let options = requestWithDefaults.endpoint.merge(...args);
|
|
||||||
if (decorations.mapToData) {
|
|
||||||
options = Object.assign({}, options, {
|
|
||||||
data: options[decorations.mapToData],
|
|
||||||
[decorations.mapToData]: void 0
|
|
||||||
});
|
|
||||||
return requestWithDefaults(options);
|
|
||||||
}
|
|
||||||
if (decorations.renamed) {
|
|
||||||
const [newScope, newMethodName] = decorations.renamed;
|
|
||||||
octokit.log.warn(
|
|
||||||
`octokit.${scope}.${methodName}() has been renamed to octokit.${newScope}.${newMethodName}()`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
if (decorations.deprecated) {
|
|
||||||
octokit.log.warn(decorations.deprecated);
|
|
||||||
}
|
|
||||||
if (decorations.renamedParameters) {
|
|
||||||
const options2 = requestWithDefaults.endpoint.merge(...args);
|
|
||||||
for (const [name, alias] of Object.entries(
|
|
||||||
decorations.renamedParameters
|
|
||||||
)) {
|
|
||||||
if (name in options2) {
|
|
||||||
octokit.log.warn(
|
|
||||||
`"${name}" parameter is deprecated for "octokit.${scope}.${methodName}()". Use "${alias}" instead`
|
|
||||||
);
|
|
||||||
if (!(alias in options2)) {
|
|
||||||
options2[alias] = options2[name];
|
|
||||||
}
|
|
||||||
delete options2[name];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return requestWithDefaults(options2);
|
|
||||||
}
|
|
||||||
return requestWithDefaults(...args);
|
|
||||||
}
|
|
||||||
return Object.assign(withDecorations, requestWithDefaults);
|
|
||||||
}
|
|
||||||
|
|
||||||
//# sourceMappingURL=endpoints-to-methods.js.map
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/index.js
|
|
||||||
|
|
||||||
|
|
||||||
function restEndpointMethods(octokit) {
|
|
||||||
const api = endpointsToMethods(octokit);
|
|
||||||
return {
|
|
||||||
rest: api
|
|
||||||
};
|
|
||||||
}
|
|
||||||
restEndpointMethods.VERSION = VERSION;
|
|
||||||
function legacyRestEndpointMethods(octokit) {
|
|
||||||
const api = endpointsToMethods(octokit);
|
|
||||||
return {
|
|
||||||
...api,
|
|
||||||
rest: api
|
|
||||||
};
|
|
||||||
}
|
|
||||||
legacyRestEndpointMethods.VERSION = VERSION;
|
|
||||||
|
|
||||||
//# sourceMappingURL=index.js.map
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 4012:
|
/***/ 4012:
|
||||||
@@ -103851,34 +100144,6 @@ module.exports = /*#__PURE__*/JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45
|
|||||||
/******/ }
|
/******/ }
|
||||||
/******/
|
/******/
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
/******/ /* webpack/runtime/define property getters */
|
|
||||||
/******/ (() => {
|
|
||||||
/******/ // define getter functions for harmony exports
|
|
||||||
/******/ __nccwpck_require__.d = (exports, definition) => {
|
|
||||||
/******/ for(var key in definition) {
|
|
||||||
/******/ if(__nccwpck_require__.o(definition, key) && !__nccwpck_require__.o(exports, key)) {
|
|
||||||
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
||||||
/******/ }
|
|
||||||
/******/ }
|
|
||||||
/******/ };
|
|
||||||
/******/ })();
|
|
||||||
/******/
|
|
||||||
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
||||||
/******/ (() => {
|
|
||||||
/******/ __nccwpck_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
||||||
/******/ })();
|
|
||||||
/******/
|
|
||||||
/******/ /* webpack/runtime/make namespace object */
|
|
||||||
/******/ (() => {
|
|
||||||
/******/ // define __esModule on exports
|
|
||||||
/******/ __nccwpck_require__.r = (exports) => {
|
|
||||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
||||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
||||||
/******/ }
|
|
||||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
||||||
/******/ };
|
|
||||||
/******/ })();
|
|
||||||
/******/
|
|
||||||
/******/ /* webpack/runtime/compat */
|
/******/ /* webpack/runtime/compat */
|
||||||
/******/
|
/******/
|
||||||
/******/ if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/";
|
/******/ if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/";
|
||||||
|
|||||||
496
dist/update-known-versions/index.js
generated
vendored
496
dist/update-known-versions/index.js
generated
vendored
@@ -28196,6 +28196,276 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|||||||
exports.KNOWN_CHECKSUMS = void 0;
|
exports.KNOWN_CHECKSUMS = void 0;
|
||||||
// AUTOGENERATED_DO_NOT_EDIT
|
// AUTOGENERATED_DO_NOT_EDIT
|
||||||
exports.KNOWN_CHECKSUMS = {
|
exports.KNOWN_CHECKSUMS = {
|
||||||
|
"aarch64-apple-darwin-0.9.26": "fcf0a9ea6599c6ae28a4c854ac6da76f2c889354d7c36ce136ef071f7ab9721f",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.26": "79e1398ec98681b1b0494ed3485b0f4565e98a7db109a3f205d0fcdc6a1992f7",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.26": "f71040c59798f79c44c08a7a1c1af7de95a8d334ea924b47b67ad6b9632be270",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.26": "ba8698c36c00c22efed4bd3506339b03c95604d001f02eaf6fbc814c9224d801",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.26": "8baa850e6f7a4f8edeef411891780161e95682bf291c85405fdc331925c425c2",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.26": "f9cf9806b3bd434b4aca5de1a8412502a29bcbc908848cdea18e32480964ab79",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.26": "881df52998da192f0609be37abe445ab0d89f28daceecb171ea8a14088153aee",
|
||||||
|
"i686-pc-windows-msvc-0.9.26": "2fa5e36d7dc3053962a95a2583b2bcc19aab2ec6c5d4c887cca58de819cf77dd",
|
||||||
|
"i686-unknown-linux-gnu-0.9.26": "03548a2abd1d604724c9d65184b506d3eafef1b0a7d8cea974a083f5f9c9496f",
|
||||||
|
"i686-unknown-linux-musl-0.9.26": "5208601b9baee1a04a604f441bd94a1ab91b511f142b27729b073f4286994f8f",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.26": "6ac6baa2dd7db742ff58a2d54e3fc09693e69c878666bcacf9d49bc58decc98a",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.26": "1a7fbd268b7520e03747022f879113545a5bd71cad02e9cbabd591b268b5a36c",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.26": "9f202ad04cc398dc77a6efe20ea91ec044ad66e1f7a60777e6efd20a357f479a",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.26": "f8e6b8f1264821add1ea21d592b4522300401f44ac4124fba9fea6874fd79797",
|
||||||
|
"x86_64-apple-darwin-0.9.26": "171eb8c518313e157c5b4cec7b4f743bc6bab1bd23e09b646679a02d096a047f",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.26": "eb02fd95d8e0eed462b4a67ecdd320d865b38c560bffcda9a0b87ec944bdf036",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.26": "30ccbf0a66dc8727a02b0e245c583ee970bdafecf3a443c1686e1b30ec4939e8",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.26": "708b752876aeeb753257e1d55470569789e465684c1d3bc1760db26360b6c28b",
|
||||||
|
"aarch64-apple-darwin-0.9.25": "606b3c6949d971709f2526fa0d9f0fd23ccf60e09f117999b406b424af18a6a6",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.25": "6a4c2a753a94d9639725b435f5d1a65bfa25cd196d448ad60841f5fe81ef0052",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.25": "a8f1d71a42c4470251a880348b2d28d530018693324175084fa1749d267c98c6",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.25": "11cddffc61826e3b7af02db37bc3ed8e9e6747dad328d45c8b02f89408afbf75",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.25": "52f3a96605a7873ec44bb84c33ee08e717df61136fec121f715871cae5b779ec",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.25": "7ae274742a5b2398bd75f9075536c7f0b3f99ebc8c6588c37e3bfcd9cc9d781d",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.25": "77220a539dfffe576cdc9b9e9ab5432c07dd1b63915c859c227883af7ba00538",
|
||||||
|
"i686-pc-windows-msvc-0.9.25": "55dbf32074a76e029410620e7e3fbef9762799c7dfcf539b098ccc0a64cac9a3",
|
||||||
|
"i686-unknown-linux-gnu-0.9.25": "b9dae29f4e37bc89e69836e59169a51d8cac4da118b7548a20b2269b19c94cad",
|
||||||
|
"i686-unknown-linux-musl-0.9.25": "a84a159856a0227c273e86594d9cf8fbf84c56bd4eeeb9a665c946304c49dbec",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.25": "37bc519ebe5e4efb12fd155eb94512547a874f0e41251203b49d715f75eb5a20",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.25": "a01a273b5cd64ece96d4589afbacaf5e99a0695f37ebe9a72fd6b2f7cf0a7071",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.25": "9d9692f1bd5ff6d9db2c4bffc4ceeb8d8746ae03ddeca0b24a0f8fc9ea81b911",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.25": "92d5e4504ef83f421a841381678f871bf2a8821a69d3374dd638e2014d4762ab",
|
||||||
|
"x86_64-apple-darwin-0.9.25": "4982dfff14b3548bc85d0fa0abec6ab8ae62836b218bf1223741ba1392ef93bf",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.25": "d63f8e59cf76bcce9cb8a3eac6c1a89adce0f89a29bacca978c9bf842f419277",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.25": "fa1f4abfe101d43e820342210c3c6854028703770f81e95b119ed1e65ec81b35",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.25": "700776c376ce36ed5b731fcd699e141d897551f5111907987b63897e0c1ad797",
|
||||||
|
"aarch64-apple-darwin-0.9.24": "89661d9a16682197086df54bb43d0b03e58e23d4d9360fc8c6c0166f2828fd71",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.24": "40ceb66af2667fc9b4d30a65ad8b8795d4effc39a44019b4218ad03f8f1d5a14",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.24": "9b291a1a4f2fefc430e4fc49c00cb93eb448d41c5c79edf45211ceffedde3334",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.24": "b16359904ede857b90b68168f10b0f6bf500858df9bed4e7156dbc59fd3f0747",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.24": "b343d7f49ea5c0982c9696cbc5c7f96d7053cf8f9c7383a58d6c0c44fbeb6422",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.24": "8d05b55fe2108ecab3995c2b656679a72c543fd9dc72eeb3a525106a709cfdcb",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.24": "788d2bee1dfdb57a462f2a5c4e3d6e8c68ee9f9f1a938bdcdc00fa9e5edeaeec",
|
||||||
|
"i686-pc-windows-msvc-0.9.24": "b49265a713cb3f874bcb373572095993d3098ab77cd2665483f53b24b788e5e9",
|
||||||
|
"i686-unknown-linux-gnu-0.9.24": "940b8985c4d464c7cc69e40b17bf09d840b980028e1d82a3fb8dd007a737f29e",
|
||||||
|
"i686-unknown-linux-musl-0.9.24": "4ffe6f377b7d68904d8d882af8adc85f2fa1bbccd26151785ff961adb67f2a99",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.24": "1fbaff65544a2c36bbd8992e2abe6c50179401745dc00b5e12bded89794056a4",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.24": "57ea84430ccf49f97184d9ee21102b250214fc6e6af4a87eefaaf8bb7c9c2b9a",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.24": "81a884380f0ee954afd968140aaa55df19f2bee30d74f3c0c94a11d2265bb388",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.24": "3da41f22f78f27a7764e303b07c68f5716f748128327c7d3d72f11c6b81b6c78",
|
||||||
|
"x86_64-apple-darwin-0.9.24": "fda9b3203cce6ec3a37177440c33c4c1963c4957fff17e2820c60ab6ccd625da",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.24": "cf9d6fa12017199d19c6f9a8f7f55811c8c04d70681b8cb6d89ffb179f08cf1f",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.24": "fb13ad85106da6b21dd16613afca910994446fe94a78ee0b5bed9c75cd066078",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.24": "cf307aa4271038daa334ca64e75aa40c0c085ce6fa0c0e6f21e41a2b62c7904d",
|
||||||
|
"aarch64-apple-darwin-0.9.23": "3aae069424778d13ef45ebd2ec906c66ab10e459e7b33341a64cd371a3d70998",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.23": "dfdb23dbfa6c89847e4163f0b3b683de889df7d9bdf95a3909dfbc6430106304",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.23": "d60b0b2aee79f9d83897615fed427bee1ea4ebcb2f15b48dd522319ecdb3de91",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.23": "ee987d943427ee24c1d3af79c7ad676950c9ad634e60a4d07e328d8a54fff92f",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.23": "1950c235e76e007f75d30903dc5da6747a344c72a1608123feff720c134ecbfe",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.23": "a7104ab491a0c2f0c58760bcb9a13cfb64c899e02a7b747c4d11da114b3f9114",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.23": "c5d494337a5ca86ad83d6a887634fda3f8392560799e4236a44d76f8e27621b6",
|
||||||
|
"i686-pc-windows-msvc-0.9.23": "94292f02b7484616bb3cd7361411540a5a52e952d149eb6faeec610b6657015d",
|
||||||
|
"i686-unknown-linux-gnu-0.9.23": "627627174d31e6fa270e91c7b2988558e4b18b86cc31de9222b6cf3b7354e9b7",
|
||||||
|
"i686-unknown-linux-musl-0.9.23": "5f65a0eb1f9067a4f5149275faba3bcb3af94dd68fbce7cd9e93ba86b5bc59c3",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.23": "69e2925397d0e781e8525ad0fd22896a114ffa02f5055e7a360e4dda3796c24e",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.23": "fb3ad2cb1a19f1bb4785580dc71837161147beab134fdc3eb4e8ccda577db1e0",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.23": "0d1d9300e2df3155b0d0b071c292fb27f8213d91854decdfb27c293397dc8e0e",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.23": "7d0b411a365b0cd8fad2b336c259743e7381676654adfbdb4f887b4136820cb8",
|
||||||
|
"x86_64-apple-darwin-0.9.23": "b5bbfbd5d8c7effa24b505365ae306116fdac58880bc9b024ec4c89435d57728",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.23": "bb6d2987906b27d3031640c4a909b6f7c134cd29674c41ef545c6e7d57dd6700",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.23": "b7bd7d9b9c9c34327f1118f99fe8c298252787ea35f7b345b8bf639377f63217",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.23": "a824a0f5f7aa67b668f54756284d458a25dea332da6e558d303890d134cc06d1",
|
||||||
|
"aarch64-apple-darwin-0.9.22": "4bfc6dacc9bcc9e433a9214a658495ca082b94fd607949b6745a955f34ccbc3c",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.22": "19b848523d5802279702f5df4ade6d45f17d111cf9e368883d4f6560f0426d49",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.22": "2f8716c407d5da21b8a3e8609ed358147216aaab28b96b1d6d7f48e9bcc6254e",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.22": "a400eaede62557af86bed6c5252a101aa1efd596698bb10c9400334fcc2847ec",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.22": "23e0770034e31aaf47b0c84156b2e5ec7638ca0edc76a4cccb8bdc94bfd16159",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.22": "db3ac49b78b3ac57c0e6e9a0ea61237a235447338594ad8e398e8074448bd071",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.22": "c153ac78c571dbbd9bab54c954b93b496645efbd4d3a0689b03e04d0de17c30f",
|
||||||
|
"i686-pc-windows-msvc-0.9.22": "f08889e9567feb1e802c9e588de60efef5a436630e4c211fbf4a2116928f69ab",
|
||||||
|
"i686-unknown-linux-gnu-0.9.22": "841e534a28285dcadfea2ca0f848a9669df287990f93d64c6bf87a9794c98ec9",
|
||||||
|
"i686-unknown-linux-musl-0.9.22": "b2c5322e188980afd4bc1afb19f4e8dee7000ad0e17ca754e97dab21c1d4d1f5",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.22": "309c4a48d7f65cdf47aa7e1c5e02502556e04f486d46e9591f5b4196c92730a3",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.22": "1e829630f8317cf3e9818c3ad1f9927fdc9d087cd38abb05f9587c19872a8560",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.22": "d3036e36b330ad6caab68fa31c12c21f80c9b8cc7822416343a5100f09d6b640",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.22": "aff367a5c6ffb87b9cebbda4372464ca6aff69a53c81a94f1d78541be9677b2d",
|
||||||
|
"x86_64-apple-darwin-0.9.22": "c0057ad78b475f343739b1bbe223361c1054524c9edf310ee1dc85a050207f86",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.22": "93a0a244f26eec208d8ea8077e3de743d9687ad76c190342722f1f57fa629457",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.22": "e170aed70ac0225feee612e855d3a57ae73c61ffb22c7e52c3fd33b87c286508",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.22": "84d087a8e77a223d80578919894f3103f46ca7c263250c3e0478ce7c38850349",
|
||||||
|
"aarch64-apple-darwin-0.9.21": "473977236ef8ac5937c80de08a3599cb6ed6021d0e015e10f88076767877a153",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.21": "54f66a44108b1b68583c9da0a515195d011189874ec9547710c032801726e042",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.21": "416984484783a357170c43f98e7d2d203f1fb595d6b3b95131513c53e50986ef",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.21": "03a49fb609888032dbc3be9fd114b50fc9bce8b73b3df319746ae08d1fbdea83",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.21": "5d84273d9e79aa1262e11d50b4b4e61c7b33bbbf47c7f7e271cb07f89ac479c1",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.21": "74b2a73b3569cbba8c73470eb45dfba393401c834dd432fc8bd2039b40b1dde6",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.21": "fa3806603be42aad687bb97ff5939a32f5e1c21d565155299410ad445669ce11",
|
||||||
|
"i686-pc-windows-msvc-0.9.21": "941e2b656cf9c94eac4b751933b24e5820247d938958c3d62d9d95d0e2409956",
|
||||||
|
"i686-unknown-linux-gnu-0.9.21": "73fbd705cb4b5c071318afee896ba9984e3a14fcf7842435a93c43dc9ca0a12c",
|
||||||
|
"i686-unknown-linux-musl-0.9.21": "c38f823354fff387758f6288ad184b104f47520b3cee7d53e92f3666b3466f55",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.21": "2cf68ea2ff75c4a627101bfe22064d6646a03cd7ddb939c933f3d8127b8d5982",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.21": "3ede0329f67f5db37914b5dfd6014c414d27e1bf0153dab8d5cc2e066da034dc",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.21": "3b7b070afd9c7be5a6364f081081cf9fec2160b53eba46cad27304b8b158e4ab",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.21": "34bd75d67a5819c9f796a78b1ec9ebd48021d87d2391b4cf282249c4d026f145",
|
||||||
|
"x86_64-apple-darwin-0.9.21": "26390da48bd55e21ab62451a80ad240ef6df10d4c48ec199cbb34c18b4288983",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.21": "d27952e73183ef8f6ee8c2a50cf8b3f2e08e01b6a9279a00a85cb261ea8d8337",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.21": "0a1ab27383c28ef1c041f85cbbc609d8e3752dfb4b238d2ad97b208a52232baf",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.21": "7abc29b3a06a99fb23564400fe884f5798a1786dc2ca05b6e0f70c53de748ab2",
|
||||||
|
"aarch64-apple-darwin-0.9.20": "c3f4b03a5d526119d41fa8b8f255aa8053c49d787778df654895e3d174b1519a",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.20": "ddba8b1ca82df9b49745c93855c670490d776027269cf7de404d951919c96ea7",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.20": "0451ecac1d0ed43d5870927df84c3d1dc93d72cf1933310acfadce5ad457c587",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.20": "d1b645d63c70da3f6f2368ea4dbc9dd5534b54be74ae32dee8941531c6874b6d",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.20": "ddbaab7f1413f181bafc96c8b18af8e69372373798d2294d03d3935fd829c939",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.20": "e1b2f5e4298878e6ac1137f744ba38b59ce68abd6a43878e66a1cac4dd7efd0e",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.20": "afc4a709ad83773bafa4ba83afa44bb101e44b817c5ad620cb9c54b62fe52e4e",
|
||||||
|
"i686-pc-windows-msvc-0.9.20": "d7e50a3bc433bbb08e7890206bec0623627e6a911a6c10322c98721bde1a9cb0",
|
||||||
|
"i686-unknown-linux-gnu-0.9.20": "aec778b1c44607416102139b6bb6a7f53a313fce8ad1033049b10ac90ed3c597",
|
||||||
|
"i686-unknown-linux-musl-0.9.20": "92dd40f272b65f8301f0f9559fe55ac99b340caba93fe1952172e3485494cbba",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.20": "c2abda00a2b53cde9b6c8380ef9773749d341039771d7447df5647d935eb54c6",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.20": "f40409d551a30081ada78cca7a1a260c02a7d16c912d73988d8e212324dea758",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.20": "6dda223f877ff3eb3eba2fcf14abfd36280e5db1c0480addf5da5273ece087d6",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.20": "8ca14c1a9fe47ad2293a321f061c7278b32d7bc200d2692662790ab6ccd395c1",
|
||||||
|
"x86_64-apple-darwin-0.9.20": "0059dc2986e7032c12b7039e1a66e570ab5c3a41598263c76e5a9c4e7da9f971",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.20": "be51ed9fcba5be4ac9c41a46aaf8af5cef86624fe27e2c645771b174069e049d",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.20": "01ac5d872ab4cf6b11965c9df317f699882405f0319872fe3dbbb3adb045600b",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.20": "0de686dcc02e0b045980779e7330f2deb98e6cd9ece40d3341bd45c6733e682d",
|
||||||
|
"aarch64-apple-darwin-0.9.18": "dc3bee4abbb3bac267a3985a23ea7617d19d41ff381dbaf560ba415ad65af68f",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.18": "fadb43ba13091f44e1786fc3967e65c7786d86192aa205d718307c649927cfc2",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.18": "f8e23ec786b18660ade6b033b6191b7e9c283c872eeb8c4531d56a873decf160",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.18": "b710ceb9889276cbd7ce04e2ca06b5bd3e288da465bd38f7dd17955c4e703a65",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.18": "2219049d28baaa0764e0315996e26c70ef548a0ba59add7f42358575ab04b410",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.18": "dddf55144884f5d83b9f5795f0b16d023abedf615505962a6ebcaaef2cb62815",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.18": "265d49a8976a5956d3cab524e85e86df5397ab0daf6bd77f1494b0b9e1c00b9a",
|
||||||
|
"i686-pc-windows-msvc-0.9.18": "52bd6fedef821a2412de73c31fdcf41c31b0a5c5886a416c3ba1a3d282ff02b8",
|
||||||
|
"i686-unknown-linux-gnu-0.9.18": "6cc0437382adddd0439c874c41625539523725d551da9f9aecf7c0a3e86a1c77",
|
||||||
|
"i686-unknown-linux-musl-0.9.18": "a727b054337ce453e98b80d6eccaa913cf542c155f3252503aff3e613735c640",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.18": "522154f752a90513cedcc621071893e46fb05d025ce8f0d4523514e8a87417d7",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.18": "0660534d548800b17d2fc1dcdaf0f284e48ca3e34fff2b8b5c1797610e18fc0e",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.18": "db6f5cbbc56a7212e61445a8cd1fcf880dc2906b4cac8f945320f0ab8eb9bf75",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.18": "bfa789548a345189b70d9069d9d7ef8f9c2236f0d10e2ae47a13549ffded5b84",
|
||||||
|
"x86_64-apple-darwin-0.9.18": "f86836c637333c65bbc7902acc9c49888eef9fbd15dccbc1946b10e30b041073",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.18": "28cbe5d30907a774bfe27a517a39b494ec6f7d3816bda8bbf6f9645490449182",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.18": "c2def3db178ade63933fa15ffc96e882c196ce53e06173dcee05b36c5f6f68f5",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.18": "a55ae2d0d53c8f6541bb4d6afc95857ff33a97de8f1d23e9d09acdcb865c4a00",
|
||||||
|
"aarch64-apple-darwin-0.9.17": "a1e1464aa1d04d5e5fa700aa2f2e10397d1114e835dbd56be25ba65c9a31bd99",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.17": "28423a27ad1d82347c00411a6792567119b3c1cfe775d3312c0e08a6b489be5b",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.17": "e9eba97b7169e47fd3c926e409f0b714820f0befc23b3ae062780586a793e4cc",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.17": "f6f48a301f8e855765af42ef50257af0cebc9c5439dfdcbc188142941aea45ca",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.17": "4d80f3509b6351882a64c1dd08f72a80e2b27f055a996295ef1f935bc3efcdde",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.17": "30a6c041429e2176062573f33c5c44307cb756264224bcb005723a6e18cff34c",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.17": "6b034dc63735c2a4541430cbece688e28bce51a09e2ad1ea2c1646a6b24cf1c3",
|
||||||
|
"i686-pc-windows-msvc-0.9.17": "6e93737710e31bf73fcc3b4b6da616bd341e9c6baf1162ddc1e7f65884063f50",
|
||||||
|
"i686-unknown-linux-gnu-0.9.17": "d2426a6d10bedd83524599bb0fbe0ba22e681ed45e892b4fd29086b424daf02a",
|
||||||
|
"i686-unknown-linux-musl-0.9.17": "988c7702a2e88092b30f16fb7f8c18284a8062044cf57e6abd1dfeae82aa6377",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.17": "5ad301d9fa15e0791ef96abd83f0ed97e7ac1191b4b7578caaad3151633fb17c",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.17": "4958185c5febf22f1c4c84944334cb0d9262c2c2c93faf30c1e0abd26f9d94fa",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.17": "feed7cc7b5fc8a99e683ee1761cf99e3da12b60a2a413b7b87a0447726a66369",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.17": "a297518913a0f0e4af1bce434440ca9d415728aaf828c7def0e913aa5c46da8f",
|
||||||
|
"x86_64-apple-darwin-0.9.17": "249e7fb18d45c06ba283c48f0a8e586ecc5fbb9e8dad0923c4169a7c4db815b2",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.17": "ebc76197bf3e1a58f9dac6f70f49b0ebd3e6907ab35289ce228bce5ba8a3f201",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.17": "0114d54f9aafd07516cf1cadfe72afa970f5fd293fbe82dd924b8a7b42c984d8",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.17": "ab616c1851e7b1ed377a9ff3997dcee184bea7eda0b20bc8607abba6c469cbad",
|
||||||
|
"aarch64-apple-darwin-0.9.16": "db6d7fb299c35dc9bbbeb89cfa9aa55a9584f637d370c0a4c62a50df9c9294a7",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.16": "591c73f47dfec72f9d242eebcb36197f27ad652a59d70e70db5c52018684d78e",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.16": "a8e9e3f7e621e212d9663ea28827bd8fb9ec11c453ae88d520b48e969e9ff5db",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.16": "cb6730e083f17b38aea88c2bdfc3d4c834a832444087d30d7914bd460ae15b79",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.16": "4c2447ff0aad62934605252eaf6372efb82fb38330b88785e162929491870186",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.16": "5a09476442563f6ee32d864d89a87490bf5a850c987898c648ef57608c5899cb",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.16": "180846487d6baa1ca9d4cd90a0aaf38f7466d3c211c219bd4d7ffbbbc5077ef2",
|
||||||
|
"i686-pc-windows-msvc-0.9.16": "f6921ace765a2905c0cda8bf8185ecd60d83060da4b2904a28b5a8c23ffc7aa2",
|
||||||
|
"i686-unknown-linux-gnu-0.9.16": "1cdb9a2086a5d1ea37e219c45407730ef3e7711737b71fae49d1396918f4cdba",
|
||||||
|
"i686-unknown-linux-musl-0.9.16": "f8b0159c52bc43cbe598c52dd43ca911c22c6b9da992f3604434b23d21ac5ff6",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.16": "40c39d344c92c6a877fdfe89db8a5f84990dbb7097e529122bd7d90d1975eb90",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.16": "982167ebae22efbda212ccbacc582b00486150695d83fca94d39c3422a0f8865",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.16": "b94ef3afa9bc94288e069162143ec20ed1d103d7631a17ca14c6ac28e8825baa",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.16": "cd32014282b2d2de53eb0176004dffddec77f0afbe76713f57c245e08cdf2b21",
|
||||||
|
"x86_64-apple-darwin-0.9.16": "e1ba1992e163f8b9d54d1cd1501002f019f4b729dec2a197e79a56d354ec2773",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.16": "e498a1d5983da7727af96b63ddfcd52ee883173552664ad0b629b3d4c7a46e91",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.16": "3adbf5322471b53a61483b4a5d091e70c32231ebc63fd327fae7b844cbcd3e01",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.16": "35a26bea6aad2c8eb468cdf69baccc7ab79b3d0971a76a6741a687535a2acfad",
|
||||||
|
"aarch64-apple-darwin-0.9.15": "388029510fdf64771745e9fb85cd6ec042580678a9e61c90fe355301f1c42f1e",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.15": "19422893deba37feb4b4191b43be89525ac48bd378f9fdbf2d5bca44319f8c19",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.15": "d89430e201f629b203975c605cd6bfe85afc2bc0781d95838e2b5177a03b1545",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.15": "41f6ef4f86e9f8015bc31e9ca4fd44a6e2c80fc0b75d6eb74063f64ca15177c7",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.15": "c85740e8c22187f82e3dad042d412991076d5701c7e1a4eba9ae1166f08f769b",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.15": "d30d648e4c1c76110ee78953b43ecb8c356cda438a071a60c97308f9a7d2cf27",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.15": "a1fa385da85131e071f9a6cbde89456945ea821609624e80f9b4d8877b8fbcdb",
|
||||||
|
"i686-pc-windows-msvc-0.9.15": "7dabeb4719dedc1f690e4d5e9641d92c6b17e04245015d64511d207dbb1792d8",
|
||||||
|
"i686-unknown-linux-gnu-0.9.15": "806e2e49c539a030336c83cc8dd9fe6250a70b1f8fb15ecb165837ff330f4ee8",
|
||||||
|
"i686-unknown-linux-musl-0.9.15": "7ab63f3549f3fc61bab32f9526a6a3ba750dedb7f609a345a4205e41fcd91e92",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.15": "b5b72a9053e4ad1c5baa68c3c8ae728567d8d9847f8cc852e0c6fabea9307647",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.15": "880b977489a0a580df04cf9020968bf05553bccd8dd48375a0c7cb6dd8048f58",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.15": "cb993da480f90b226bca66a1f54c4a0419a245d07d3d0e30a3f8c9a5b1f8fd2a",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.15": "e0cac629299a49336e92a13684671bbf50933749412f480e051a4071a619fcd8",
|
||||||
|
"x86_64-apple-darwin-0.9.15": "a7d9ae35ce2d192cb0356f07439cfc6768d4dff8e95ae69f821e8fbe7bcb0e09",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.15": "a6887c93a54c46de7dcc0bc798f84a130d7f411124ad43252716f75d0c2c33e0",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.15": "2053df0089327569cddd6afea920c2285b482d9b123f5db9f658273e96ab792c",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.15": "7037889adb182ce50379b3a789154ad6be00397b892fec9e93e11c457945aec0",
|
||||||
|
"aarch64-apple-darwin-0.9.14": "5267ecb62737b2ec0d61fd40e93c20d0a201eba96588582633f725792c778e00",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.14": "966f4ddb5450ade2be0989bb3d4cc4ff66ec316ad714618f2391712ec3660908",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.14": "b19bac23c34490b46f024636f164889b14403ab262118e2f97224053fc17ed8c",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.14": "631ac3b88a77ec1af35297fdecc0b60b3eef16482617e3a2a5805bd667166437",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.14": "a5e112d7ec880c2fe9bb95500d3e6f148e68ca7ff2dd88ab0f8d966e14ef3c9d",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.14": "09449988d71401c37e8a7db2eb381e4a931c6394b7c1c9db7e444c2948f16677",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.14": "b7273fc488ac5ae624ab5f657410d44443f30643b77b0ac0d1fdec0f7dee7b95",
|
||||||
|
"i686-pc-windows-msvc-0.9.14": "b361e46aa3d9fa94850fbf006deff3c23f1aa1392ec78da598b5e3af0349ae23",
|
||||||
|
"i686-unknown-linux-gnu-0.9.14": "106d70d5a9034d06ad1c2c6b028e6b0b77816f5de34d42f4e5c88fd5d5a0a8b0",
|
||||||
|
"i686-unknown-linux-musl-0.9.14": "2b9685ea197030fbcd327f5a96012c0d8a468db35c36e84b683b944b696d853a",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.14": "1cdb82fa8fc213149dd34bed755ba2ec8faef9d45a4206799256b2926c1495d9",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.14": "9ae475bb30150d12633283dd73707fc059bece75e2c42288bf35212b5e6f09ec",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.14": "96abad8a9324bd756905ab705ef853e036b3725242161682e7ceab2bf4081186",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.14": "f5250473bd8a036b78f4ec19450eb3efe743232d688f770ea2a92f21da7fb417",
|
||||||
|
"x86_64-apple-darwin-0.9.14": "276fe2605a0ba8306a875101e3a11bc5b93e2bce0b6b3b6c49c9ad14507d9dba",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.14": "7ca7a43da656d9c5fd4b40ce6e8de19bc46d51e026c9dfd4909c1bc8b25f88bc",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.14": "e72024e390fed178072e0c9b262c052d89ccff32a5522504f4991d6265aff411",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.14": "2b9636963c700a595d476e387eb8041973d30c5add3193a8710a4306442ee74b",
|
||||||
|
"aarch64-apple-darwin-0.9.13": "9c594dce1c237e11680be2b6d1331448eeb6f8a1453fb851a66a40291bb624de",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.13": "761e29d5a67ca61f1d19c20ce935a9fd1f0011efb0e00f1efb20b0801e06b3c4",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.13": "c221d04810f873a7aa8bae9aa6ed721e600e56534980df1363952386a4fcdcc5",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.13": "5a81540af68e28df324d01d79900e7b86c659e8167cb236528b8e6050d74f94e",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.13": "35043814a4eff41141943834e70faa8de54a4a9f6635e0993382ac2ee06651bf",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.13": "a6c99ae8fdd21e58b8908ecf4f521d2045e297572d899fdd6b59e14d1095600c",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.13": "8a7655f116f90380a9b9e5a11cf8dc37c5a898b01087d48a801a59165eb2e42c",
|
||||||
|
"i686-pc-windows-msvc-0.9.13": "be134c7576ba494db286a2ccc2ada117b4709e67090264d81891221ea366f2ef",
|
||||||
|
"i686-unknown-linux-gnu-0.9.13": "b0884051fdf28461db2f1d4f0968cfcc4ad51539195638beb2656cba863a9895",
|
||||||
|
"i686-unknown-linux-musl-0.9.13": "839215a614165993ee4daecb25857f17d81640ca88bb2874129a92451ac109f3",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.13": "735fd044e22dbcda6d174d9dc7f007a2782610509be4bc9c0bdec18eb0f76684",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.13": "bac44db58d9e4fc9f1ebc6c03d4ef73d10ae871569a19099d348803e1b09a763",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.13": "189ce36262a01fc411e85dc6d2cb8dc262b9ba2ce5bc1e6f3ba2bb284a190b95",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.13": "037fc4a382a2d591429a35078cce5ff44170e2d14fa5fa4625902f36b8aa892a",
|
||||||
|
"x86_64-apple-darwin-0.9.13": "571cb1623681c439af892335c729c272266e836a9ebcb627f34f8012c6459d9d",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.13": "cdfb04512c9184939f16eea02644a7133b4e41233ead69122d49847d29a45538",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.13": "c45a44144bf23a2182e143227b4ad0bbe41a2bb7161a637c02e968906af53fd1",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.13": "04cf326d2d742ce5c8890fdc0b9f71bd707be8640979bf6e53ddd52da74dfb41",
|
||||||
|
"aarch64-apple-darwin-0.9.12": "6bf1148aa48bc42853e8216982a89f6909e1932a51f4d8dce27815e8954e4664",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.12": "0975aff9837edcd97f2f781ff78754929ee13386708b76a5f223ed41b5741fec",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.12": "3c4dd18c1db6bd1af3b84ea3b3cc34dd9d8b955d3e700d1e1e4a18249decbe69",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.12": "e953307caacdcf8a5bbac510423b2e64840428244a542ae2d7a6ca79c2931c24",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.12": "3f8ede818c4a7d8f7f3069eb4034dcdea85342d7b952b269cf17bd2854a9e028",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.12": "2f06cb797ba7c4f5f1774331d4e15f912b1e8035e49c9ad5f510378fd2d129dc",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.12": "d72ecd42c3657c1e6ca76adc0d98c0576751da8e115cbfbb2cbd36be3f8c8638",
|
||||||
|
"i686-pc-windows-msvc-0.9.12": "e140404f281a6427faac4d4d0fab467f3e305ae6ba6ecfab0d149ad6815a2c04",
|
||||||
|
"i686-unknown-linux-gnu-0.9.12": "a56311ec3dfa0fa0760e763dcd0879f5a5c21aa5342b9290d2650b014fec49c8",
|
||||||
|
"i686-unknown-linux-musl-0.9.12": "1ac8ad42c48eebdc0d62ae78707d4ca2727d0c88ec00fbdd07d0655f023e2ab9",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.12": "89f4a9122dfd30dd51db572513e5db4a05e29abe752405d751b92fe6f30990e2",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.12": "2941ffdf84340c8416cec8beb15c35b92afb1185a08cae05b8637c26225473d5",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.12": "0f95884ded94f98d3b8a1f2f9f78f6da4eea5e20f718185a0da4778ab0798e9b",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.12": "a73662924261b0c581b762040c27fb839aca9164b13e017ca5162ae3dbb51c50",
|
||||||
|
"x86_64-apple-darwin-0.9.12": "b91852ea80e1c137f6246c8b01bc52d1c7213bff8d82cccd532ce2272c56d482",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.12": "ee09ed595c54ee70fb29b596c9a15aa71f5d7a1191417985a0684a1dd644a8da",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.12": "4e43dac0c82b12b66564d91d5649350377b771d1df84374d9be1b9e6c8dd8152",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.12": "3621344419cedb7625f0c07c54e876d0a6bb5576b39879b118ed96a6d104fd11",
|
||||||
|
"aarch64-apple-darwin-0.9.11": "594d9f4cfbd21d5a2f34b0352bf423066a9dab1733c90b5d40e3e227506deb03",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.11": "04964328f8e8a4e868153f65a29a927c5d3d8f16c343686bbab5147c72858903",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.11": "b695e1796449ea85f967b749f87283678ce284e2c042b4b6fa51fa36ec06f47c",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.11": "26b33bb65714247dd865216e71c5528030c85c6de9ce06172152158ed7add70c",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.11": "6b64be48c461ec1b25d8695d407d6189c660ca2f25ab5978476ae2cff516ce32",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.11": "2212adfff866e062dcea7d1ef99935043a49e3d77a18c9258851b7d23c5c3f90",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.11": "73729ebd29e2895f30c1a600adac56748b1afe18e9398e86ac4a293941fee3f7",
|
||||||
|
"i686-pc-windows-msvc-0.9.11": "d7a6e1d8f3d6bc2eea36311fe1b30ee44e8aac5de54189bbf17849a212a388a0",
|
||||||
|
"i686-unknown-linux-gnu-0.9.11": "19189d007a820ed37b08a54cc46efd2b697ed266e71bac6f38abf44e319a5067",
|
||||||
|
"i686-unknown-linux-musl-0.9.11": "d517ec84358c3ed55757bf8e28eba40072b7912626d96ef0df29fd115f875ad1",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.11": "a30437a5ccbbcedcdd2e70e81404cfcf7a6b4f34d1a440c61e7df96702165869",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.11": "6340562f7aff862c6b15c55520ca81823fe446e595f96f4732ddf37544977a5d",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.11": "89ac4d89928dded2e1f300f5f6b184b9f370493c2e506ca272d77e39c6a1b68f",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.11": "665208d604a63d8e934bd4f748e689283f507b20a083f6c027146d92eb3048c0",
|
||||||
|
"x86_64-apple-darwin-0.9.11": "14236594b4edbd90929d845766a41a1d4e51d530c9ebbedfb3d93688661f142c",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.11": "45a3ff2a68c246ed9fd2d9df032496c1beebe480357f356ac25d2cb144884c30",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.11": "817c0722b437b4b45b9a7e0231616a09db76bab1b8d178ba7a9680c690db19f0",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.11": "5cc06fe71374a8883aeb2c83a141a4b5fac8584ee894ba31c5792254508b4e9a",
|
||||||
"aarch64-apple-darwin-0.9.10": "af171d5a4eb1c502819de32740aa811ff71851b1f5ec2d8bd0dda302ed9554c2",
|
"aarch64-apple-darwin-0.9.10": "af171d5a4eb1c502819de32740aa811ff71851b1f5ec2d8bd0dda302ed9554c2",
|
||||||
"aarch64-pc-windows-msvc-0.9.10": "6cca85b629d2944f839651e01070dc3de03d238c75a310f28914fcd63ddb9aa6",
|
"aarch64-pc-windows-msvc-0.9.10": "6cca85b629d2944f839651e01070dc3de03d238c75a310f28914fcd63ddb9aa6",
|
||||||
"aarch64-unknown-linux-gnu-0.9.10": "39d80f85f604018281b3e7bf2e1515ab96e8eec5763a2cef9f87d821f66d1758",
|
"aarch64-unknown-linux-gnu-0.9.10": "39d80f85f604018281b3e7bf2e1515ab96e8eec5763a2cef9f87d821f66d1758",
|
||||||
@@ -32212,8 +32482,10 @@ var __importStar = (this && this.__importStar) || (function () {
|
|||||||
};
|
};
|
||||||
})();
|
})();
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
|
exports.REMOTE_MANIFEST_URL = void 0;
|
||||||
exports.getLatestKnownVersion = getLatestKnownVersion;
|
exports.getLatestKnownVersion = getLatestKnownVersion;
|
||||||
exports.getDownloadUrl = getDownloadUrl;
|
exports.getDownloadUrl = getDownloadUrl;
|
||||||
|
exports.getAvailableVersionsFromManifest = getAvailableVersionsFromManifest;
|
||||||
exports.updateVersionManifest = updateVersionManifest;
|
exports.updateVersionManifest = updateVersionManifest;
|
||||||
const node_fs_1 = __nccwpck_require__(3024);
|
const node_fs_1 = __nccwpck_require__(3024);
|
||||||
const node_path_1 = __nccwpck_require__(6760);
|
const node_path_1 = __nccwpck_require__(6760);
|
||||||
@@ -32221,6 +32493,9 @@ const core = __importStar(__nccwpck_require__(7484));
|
|||||||
const semver = __importStar(__nccwpck_require__(9318));
|
const semver = __importStar(__nccwpck_require__(9318));
|
||||||
const fetch_1 = __nccwpck_require__(3385);
|
const fetch_1 = __nccwpck_require__(3385);
|
||||||
const localManifestFile = (0, node_path_1.join)(__dirname, "..", "..", "version-manifest.json");
|
const localManifestFile = (0, node_path_1.join)(__dirname, "..", "..", "version-manifest.json");
|
||||||
|
exports.REMOTE_MANIFEST_URL = "https://raw.githubusercontent.com/astral-sh/setup-uv/main/version-manifest.json";
|
||||||
|
// Cache for manifest entries to avoid re-fetching
|
||||||
|
const manifestCache = new Map();
|
||||||
async function getLatestKnownVersion(manifestUrl) {
|
async function getLatestKnownVersion(manifestUrl) {
|
||||||
const manifestEntries = await getManifestEntries(manifestUrl);
|
const manifestEntries = await getManifestEntries(manifestUrl);
|
||||||
return manifestEntries.reduce((a, b) => semver.gt(a.version, b.version) ? a : b).version;
|
return manifestEntries.reduce((a, b) => semver.gt(a.version, b.version) ? a : b).version;
|
||||||
@@ -32232,7 +32507,18 @@ async function getDownloadUrl(manifestUrl, version, arch, platform) {
|
|||||||
entry.platform === platform);
|
entry.platform === platform);
|
||||||
return entry ? entry.downloadUrl : undefined;
|
return entry ? entry.downloadUrl : undefined;
|
||||||
}
|
}
|
||||||
|
async function getAvailableVersionsFromManifest(manifestUrl) {
|
||||||
|
const manifestEntries = await getManifestEntries(manifestUrl);
|
||||||
|
return [...new Set(manifestEntries.map((entry) => entry.version))];
|
||||||
|
}
|
||||||
async function getManifestEntries(manifestUrl) {
|
async function getManifestEntries(manifestUrl) {
|
||||||
|
const cacheKey = manifestUrl ?? "local";
|
||||||
|
// Return cached entries if available
|
||||||
|
const cached = manifestCache.get(cacheKey);
|
||||||
|
if (cached !== undefined) {
|
||||||
|
core.debug(`Using cached manifest entries for: ${cacheKey}`);
|
||||||
|
return cached;
|
||||||
|
}
|
||||||
let data;
|
let data;
|
||||||
if (manifestUrl !== undefined) {
|
if (manifestUrl !== undefined) {
|
||||||
core.info(`Fetching manifest-file from: ${manifestUrl}`);
|
core.info(`Fetching manifest-file from: ${manifestUrl}`);
|
||||||
@@ -32247,7 +32533,9 @@ async function getManifestEntries(manifestUrl) {
|
|||||||
const fileContent = await node_fs_1.promises.readFile(localManifestFile);
|
const fileContent = await node_fs_1.promises.readFile(localManifestFile);
|
||||||
data = fileContent.toString();
|
data = fileContent.toString();
|
||||||
}
|
}
|
||||||
return JSON.parse(data);
|
const entries = JSON.parse(data);
|
||||||
|
manifestCache.set(cacheKey, entries);
|
||||||
|
return entries;
|
||||||
}
|
}
|
||||||
async function updateVersionManifest(manifestUrl, downloadUrls) {
|
async function updateVersionManifest(manifestUrl, downloadUrls) {
|
||||||
const manifest = [];
|
const manifest = [];
|
||||||
@@ -35035,12 +35323,13 @@ class RequestError extends Error {
|
|||||||
*/
|
*/
|
||||||
response;
|
response;
|
||||||
constructor(message, statusCode, options) {
|
constructor(message, statusCode, options) {
|
||||||
super(message);
|
super(message, { cause: options.cause });
|
||||||
this.name = "HttpError";
|
this.name = "HttpError";
|
||||||
this.status = Number.parseInt(statusCode);
|
this.status = Number.parseInt(statusCode);
|
||||||
if (Number.isNaN(this.status)) {
|
if (Number.isNaN(this.status)) {
|
||||||
this.status = 0;
|
this.status = 0;
|
||||||
}
|
}
|
||||||
|
/* v8 ignore else -- @preserve -- Bug with vitest coverage where it sees an else branch that doesn't exist */
|
||||||
if ("response" in options) {
|
if ("response" in options) {
|
||||||
this.response = options.response;
|
this.response = options.response;
|
||||||
}
|
}
|
||||||
@@ -35067,7 +35356,7 @@ class RequestError extends Error {
|
|||||||
|
|
||||||
|
|
||||||
// pkg/dist-src/version.js
|
// pkg/dist-src/version.js
|
||||||
var dist_bundle_VERSION = "10.0.5";
|
var dist_bundle_VERSION = "10.0.7";
|
||||||
|
|
||||||
// pkg/dist-src/defaults.js
|
// pkg/dist-src/defaults.js
|
||||||
var defaults_default = {
|
var defaults_default = {
|
||||||
@@ -35091,6 +35380,7 @@ function dist_bundle_isPlainObject(value) {
|
|||||||
|
|
||||||
// pkg/dist-src/fetch-wrapper.js
|
// pkg/dist-src/fetch-wrapper.js
|
||||||
|
|
||||||
|
var noop = () => "";
|
||||||
async function fetchWrapper(requestOptions) {
|
async function fetchWrapper(requestOptions) {
|
||||||
const fetch = requestOptions.request?.fetch || globalThis.fetch;
|
const fetch = requestOptions.request?.fetch || globalThis.fetch;
|
||||||
if (!fetch) {
|
if (!fetch) {
|
||||||
@@ -35192,7 +35482,7 @@ async function fetchWrapper(requestOptions) {
|
|||||||
async function getResponseData(response) {
|
async function getResponseData(response) {
|
||||||
const contentType = response.headers.get("content-type");
|
const contentType = response.headers.get("content-type");
|
||||||
if (!contentType) {
|
if (!contentType) {
|
||||||
return response.text().catch(() => "");
|
return response.text().catch(noop);
|
||||||
}
|
}
|
||||||
const mimetype = (0,fast_content_type_parse/* safeParse */.xL)(contentType);
|
const mimetype = (0,fast_content_type_parse/* safeParse */.xL)(contentType);
|
||||||
if (isJSONResponse(mimetype)) {
|
if (isJSONResponse(mimetype)) {
|
||||||
@@ -35204,9 +35494,12 @@ async function getResponseData(response) {
|
|||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
} else if (mimetype.type.startsWith("text/") || mimetype.parameters.charset?.toLowerCase() === "utf-8") {
|
} else if (mimetype.type.startsWith("text/") || mimetype.parameters.charset?.toLowerCase() === "utf-8") {
|
||||||
return response.text().catch(() => "");
|
return response.text().catch(noop);
|
||||||
} else {
|
} else {
|
||||||
return response.arrayBuffer().catch(() => new ArrayBuffer(0));
|
return response.arrayBuffer().catch(
|
||||||
|
/* v8 ignore next -- @preserve */
|
||||||
|
() => new ArrayBuffer(0)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function isJSONResponse(mimetype) {
|
function isJSONResponse(mimetype) {
|
||||||
@@ -35254,6 +35547,8 @@ function dist_bundle_withDefaults(oldEndpoint, newDefaults) {
|
|||||||
// pkg/dist-src/index.js
|
// pkg/dist-src/index.js
|
||||||
var request = dist_bundle_withDefaults(endpoint, defaults_default);
|
var request = dist_bundle_withDefaults(endpoint, defaults_default);
|
||||||
|
|
||||||
|
/* v8 ignore next -- @preserve */
|
||||||
|
/* v8 ignore else -- @preserve */
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/graphql/dist-bundle/index.js
|
;// CONCATENATED MODULE: ./node_modules/@octokit/graphql/dist-bundle/index.js
|
||||||
// pkg/dist-src/index.js
|
// pkg/dist-src/index.js
|
||||||
@@ -35438,7 +35733,7 @@ var createTokenAuth = function createTokenAuth2(token) {
|
|||||||
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/core/dist-src/version.js
|
;// CONCATENATED MODULE: ./node_modules/@octokit/core/dist-src/version.js
|
||||||
const version_VERSION = "7.0.5";
|
const version_VERSION = "7.0.6";
|
||||||
|
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/core/dist-src/index.js
|
;// CONCATENATED MODULE: ./node_modules/@octokit/core/dist-src/index.js
|
||||||
@@ -35448,16 +35743,16 @@ const version_VERSION = "7.0.5";
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
const noop = () => {
|
const dist_src_noop = () => {
|
||||||
};
|
};
|
||||||
const consoleWarn = console.warn.bind(console);
|
const consoleWarn = console.warn.bind(console);
|
||||||
const consoleError = console.error.bind(console);
|
const consoleError = console.error.bind(console);
|
||||||
function createLogger(logger = {}) {
|
function createLogger(logger = {}) {
|
||||||
if (typeof logger.debug !== "function") {
|
if (typeof logger.debug !== "function") {
|
||||||
logger.debug = noop;
|
logger.debug = dist_src_noop;
|
||||||
}
|
}
|
||||||
if (typeof logger.info !== "function") {
|
if (typeof logger.info !== "function") {
|
||||||
logger.info = noop;
|
logger.info = dist_src_noop;
|
||||||
}
|
}
|
||||||
if (typeof logger.warn !== "function") {
|
if (typeof logger.warn !== "function") {
|
||||||
logger.warn = consoleWarn;
|
logger.warn = consoleWarn;
|
||||||
@@ -35724,7 +36019,9 @@ var paginatingEndpoints = [
|
|||||||
"GET /enterprises/{enterprise}/code-security/configurations",
|
"GET /enterprises/{enterprise}/code-security/configurations",
|
||||||
"GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}/repositories",
|
"GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}/repositories",
|
||||||
"GET /enterprises/{enterprise}/dependabot/alerts",
|
"GET /enterprises/{enterprise}/dependabot/alerts",
|
||||||
"GET /enterprises/{enterprise}/secret-scanning/alerts",
|
"GET /enterprises/{enterprise}/teams",
|
||||||
|
"GET /enterprises/{enterprise}/teams/{enterprise-team}/memberships",
|
||||||
|
"GET /enterprises/{enterprise}/teams/{enterprise-team}/organizations",
|
||||||
"GET /events",
|
"GET /events",
|
||||||
"GET /gists",
|
"GET /gists",
|
||||||
"GET /gists/public",
|
"GET /gists/public",
|
||||||
@@ -35756,6 +36053,7 @@ var paginatingEndpoints = [
|
|||||||
"GET /orgs/{org}/actions/secrets/{secret_name}/repositories",
|
"GET /orgs/{org}/actions/secrets/{secret_name}/repositories",
|
||||||
"GET /orgs/{org}/actions/variables",
|
"GET /orgs/{org}/actions/variables",
|
||||||
"GET /orgs/{org}/actions/variables/{name}/repositories",
|
"GET /orgs/{org}/actions/variables/{name}/repositories",
|
||||||
|
"GET /orgs/{org}/attestations/repositories",
|
||||||
"GET /orgs/{org}/attestations/{subject_digest}",
|
"GET /orgs/{org}/attestations/{subject_digest}",
|
||||||
"GET /orgs/{org}/blocks",
|
"GET /orgs/{org}/blocks",
|
||||||
"GET /orgs/{org}/campaigns",
|
"GET /orgs/{org}/campaigns",
|
||||||
@@ -35807,6 +36105,7 @@ var paginatingEndpoints = [
|
|||||||
"GET /orgs/{org}/rulesets/{ruleset_id}/history",
|
"GET /orgs/{org}/rulesets/{ruleset_id}/history",
|
||||||
"GET /orgs/{org}/secret-scanning/alerts",
|
"GET /orgs/{org}/secret-scanning/alerts",
|
||||||
"GET /orgs/{org}/security-advisories",
|
"GET /orgs/{org}/security-advisories",
|
||||||
|
"GET /orgs/{org}/settings/immutable-releases/repositories",
|
||||||
"GET /orgs/{org}/settings/network-configurations",
|
"GET /orgs/{org}/settings/network-configurations",
|
||||||
"GET /orgs/{org}/team/{team_slug}/copilot/metrics",
|
"GET /orgs/{org}/team/{team_slug}/copilot/metrics",
|
||||||
"GET /orgs/{org}/teams",
|
"GET /orgs/{org}/teams",
|
||||||
@@ -35820,7 +36119,6 @@ var paginatingEndpoints = [
|
|||||||
"GET /orgs/{org}/teams/{team_slug}/repos",
|
"GET /orgs/{org}/teams/{team_slug}/repos",
|
||||||
"GET /orgs/{org}/teams/{team_slug}/teams",
|
"GET /orgs/{org}/teams/{team_slug}/teams",
|
||||||
"GET /projects/{project_id}/collaborators",
|
"GET /projects/{project_id}/collaborators",
|
||||||
"GET /projects/{project_id}/columns",
|
|
||||||
"GET /repos/{owner}/{repo}/actions/artifacts",
|
"GET /repos/{owner}/{repo}/actions/artifacts",
|
||||||
"GET /repos/{owner}/{repo}/actions/caches",
|
"GET /repos/{owner}/{repo}/actions/caches",
|
||||||
"GET /repos/{owner}/{repo}/actions/organization-secrets",
|
"GET /repos/{owner}/{repo}/actions/organization-secrets",
|
||||||
@@ -35960,8 +36258,6 @@ var paginatingEndpoints = [
|
|||||||
"GET /user/subscriptions",
|
"GET /user/subscriptions",
|
||||||
"GET /user/teams",
|
"GET /user/teams",
|
||||||
"GET /users",
|
"GET /users",
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/fields",
|
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/items",
|
|
||||||
"GET /users/{username}/attestations/{subject_digest}",
|
"GET /users/{username}/attestations/{subject_digest}",
|
||||||
"GET /users/{username}/events",
|
"GET /users/{username}/events",
|
||||||
"GET /users/{username}/events/orgs/{org}",
|
"GET /users/{username}/events/orgs/{org}",
|
||||||
@@ -35975,6 +36271,8 @@ var paginatingEndpoints = [
|
|||||||
"GET /users/{username}/packages",
|
"GET /users/{username}/packages",
|
||||||
"GET /users/{username}/projects",
|
"GET /users/{username}/projects",
|
||||||
"GET /users/{username}/projectsV2",
|
"GET /users/{username}/projectsV2",
|
||||||
|
"GET /users/{username}/projectsV2/{project_number}/fields",
|
||||||
|
"GET /users/{username}/projectsV2/{project_number}/items",
|
||||||
"GET /users/{username}/received_events",
|
"GET /users/{username}/received_events",
|
||||||
"GET /users/{username}/received_events/public",
|
"GET /users/{username}/received_events/public",
|
||||||
"GET /users/{username}/repos",
|
"GET /users/{username}/repos",
|
||||||
@@ -36021,7 +36319,7 @@ __nccwpck_require__.d(__webpack_exports__, {
|
|||||||
});
|
});
|
||||||
|
|
||||||
;// CONCATENATED MODULE: ./node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/version.js
|
;// CONCATENATED MODULE: ./node_modules/@octokit/plugin-rest-endpoint-methods/dist-src/version.js
|
||||||
const VERSION = "16.1.1";
|
const VERSION = "17.0.0";
|
||||||
|
|
||||||
//# sourceMappingURL=version.js.map
|
//# sourceMappingURL=version.js.map
|
||||||
|
|
||||||
@@ -36084,6 +36382,12 @@ const Endpoints = {
|
|||||||
deleteArtifact: [
|
deleteArtifact: [
|
||||||
"DELETE /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"
|
"DELETE /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"
|
||||||
],
|
],
|
||||||
|
deleteCustomImageFromOrg: [
|
||||||
|
"DELETE /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}"
|
||||||
|
],
|
||||||
|
deleteCustomImageVersionFromOrg: [
|
||||||
|
"DELETE /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}/versions/{version}"
|
||||||
|
],
|
||||||
deleteEnvironmentSecret: [
|
deleteEnvironmentSecret: [
|
||||||
"DELETE /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}"
|
"DELETE /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}"
|
||||||
],
|
],
|
||||||
@@ -36157,6 +36461,12 @@ const Endpoints = {
|
|||||||
"GET /repos/{owner}/{repo}/actions/permissions/selected-actions"
|
"GET /repos/{owner}/{repo}/actions/permissions/selected-actions"
|
||||||
],
|
],
|
||||||
getArtifact: ["GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"],
|
getArtifact: ["GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"],
|
||||||
|
getCustomImageForOrg: [
|
||||||
|
"GET /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}"
|
||||||
|
],
|
||||||
|
getCustomImageVersionForOrg: [
|
||||||
|
"GET /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}/versions/{version}"
|
||||||
|
],
|
||||||
getCustomOidcSubClaimForRepo: [
|
getCustomOidcSubClaimForRepo: [
|
||||||
"GET /repos/{owner}/{repo}/actions/oidc/customization/sub"
|
"GET /repos/{owner}/{repo}/actions/oidc/customization/sub"
|
||||||
],
|
],
|
||||||
@@ -36236,6 +36546,12 @@ const Endpoints = {
|
|||||||
"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing"
|
"GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing"
|
||||||
],
|
],
|
||||||
listArtifactsForRepo: ["GET /repos/{owner}/{repo}/actions/artifacts"],
|
listArtifactsForRepo: ["GET /repos/{owner}/{repo}/actions/artifacts"],
|
||||||
|
listCustomImageVersionsForOrg: [
|
||||||
|
"GET /orgs/{org}/actions/hosted-runners/images/custom/{image_definition_id}/versions"
|
||||||
|
],
|
||||||
|
listCustomImagesForOrg: [
|
||||||
|
"GET /orgs/{org}/actions/hosted-runners/images/custom"
|
||||||
|
],
|
||||||
listEnvironmentSecrets: [
|
listEnvironmentSecrets: [
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/secrets"
|
"GET /repos/{owner}/{repo}/environments/{environment_name}/secrets"
|
||||||
],
|
],
|
||||||
@@ -36494,6 +36810,12 @@ const Endpoints = {
|
|||||||
getGithubActionsBillingUser: [
|
getGithubActionsBillingUser: [
|
||||||
"GET /users/{username}/settings/billing/actions"
|
"GET /users/{username}/settings/billing/actions"
|
||||||
],
|
],
|
||||||
|
getGithubBillingPremiumRequestUsageReportOrg: [
|
||||||
|
"GET /organizations/{org}/settings/billing/premium_request/usage"
|
||||||
|
],
|
||||||
|
getGithubBillingPremiumRequestUsageReportUser: [
|
||||||
|
"GET /users/{username}/settings/billing/premium_request/usage"
|
||||||
|
],
|
||||||
getGithubBillingUsageReportOrg: [
|
getGithubBillingUsageReportOrg: [
|
||||||
"GET /organizations/{org}/settings/billing/usage"
|
"GET /organizations/{org}/settings/billing/usage"
|
||||||
],
|
],
|
||||||
@@ -36861,6 +37183,51 @@ const Endpoints = {
|
|||||||
exportSbom: ["GET /repos/{owner}/{repo}/dependency-graph/sbom"]
|
exportSbom: ["GET /repos/{owner}/{repo}/dependency-graph/sbom"]
|
||||||
},
|
},
|
||||||
emojis: { get: ["GET /emojis"] },
|
emojis: { get: ["GET /emojis"] },
|
||||||
|
enterpriseTeamMemberships: {
|
||||||
|
add: [
|
||||||
|
"PUT /enterprises/{enterprise}/teams/{enterprise-team}/memberships/{username}"
|
||||||
|
],
|
||||||
|
bulkAdd: [
|
||||||
|
"POST /enterprises/{enterprise}/teams/{enterprise-team}/memberships/add"
|
||||||
|
],
|
||||||
|
bulkRemove: [
|
||||||
|
"POST /enterprises/{enterprise}/teams/{enterprise-team}/memberships/remove"
|
||||||
|
],
|
||||||
|
get: [
|
||||||
|
"GET /enterprises/{enterprise}/teams/{enterprise-team}/memberships/{username}"
|
||||||
|
],
|
||||||
|
list: ["GET /enterprises/{enterprise}/teams/{enterprise-team}/memberships"],
|
||||||
|
remove: [
|
||||||
|
"DELETE /enterprises/{enterprise}/teams/{enterprise-team}/memberships/{username}"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
enterpriseTeamOrganizations: {
|
||||||
|
add: [
|
||||||
|
"PUT /enterprises/{enterprise}/teams/{enterprise-team}/organizations/{org}"
|
||||||
|
],
|
||||||
|
bulkAdd: [
|
||||||
|
"POST /enterprises/{enterprise}/teams/{enterprise-team}/organizations/add"
|
||||||
|
],
|
||||||
|
bulkRemove: [
|
||||||
|
"POST /enterprises/{enterprise}/teams/{enterprise-team}/organizations/remove"
|
||||||
|
],
|
||||||
|
delete: [
|
||||||
|
"DELETE /enterprises/{enterprise}/teams/{enterprise-team}/organizations/{org}"
|
||||||
|
],
|
||||||
|
getAssignment: [
|
||||||
|
"GET /enterprises/{enterprise}/teams/{enterprise-team}/organizations/{org}"
|
||||||
|
],
|
||||||
|
getAssignments: [
|
||||||
|
"GET /enterprises/{enterprise}/teams/{enterprise-team}/organizations"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
enterpriseTeams: {
|
||||||
|
create: ["POST /enterprises/{enterprise}/teams"],
|
||||||
|
delete: ["DELETE /enterprises/{enterprise}/teams/{team_slug}"],
|
||||||
|
get: ["GET /enterprises/{enterprise}/teams/{team_slug}"],
|
||||||
|
list: ["GET /enterprises/{enterprise}/teams"],
|
||||||
|
update: ["PATCH /enterprises/{enterprise}/teams/{team_slug}"]
|
||||||
|
},
|
||||||
gists: {
|
gists: {
|
||||||
checkIsStarred: ["GET /gists/{gist_id}/star"],
|
checkIsStarred: ["GET /gists/{gist_id}/star"],
|
||||||
create: ["POST /gists"],
|
create: ["POST /gists"],
|
||||||
@@ -37130,14 +37497,34 @@ const Endpoints = {
|
|||||||
],
|
],
|
||||||
createInvitation: ["POST /orgs/{org}/invitations"],
|
createInvitation: ["POST /orgs/{org}/invitations"],
|
||||||
createIssueType: ["POST /orgs/{org}/issue-types"],
|
createIssueType: ["POST /orgs/{org}/issue-types"],
|
||||||
createOrUpdateCustomProperties: ["PATCH /orgs/{org}/properties/schema"],
|
createWebhook: ["POST /orgs/{org}/hooks"],
|
||||||
createOrUpdateCustomPropertiesValuesForRepos: [
|
customPropertiesForOrgsCreateOrUpdateOrganizationValues: [
|
||||||
"PATCH /orgs/{org}/properties/values"
|
"PATCH /organizations/{org}/org-properties/values"
|
||||||
],
|
],
|
||||||
createOrUpdateCustomProperty: [
|
customPropertiesForOrgsGetOrganizationValues: [
|
||||||
|
"GET /organizations/{org}/org-properties/values"
|
||||||
|
],
|
||||||
|
customPropertiesForReposCreateOrUpdateOrganizationDefinition: [
|
||||||
"PUT /orgs/{org}/properties/schema/{custom_property_name}"
|
"PUT /orgs/{org}/properties/schema/{custom_property_name}"
|
||||||
],
|
],
|
||||||
createWebhook: ["POST /orgs/{org}/hooks"],
|
customPropertiesForReposCreateOrUpdateOrganizationDefinitions: [
|
||||||
|
"PATCH /orgs/{org}/properties/schema"
|
||||||
|
],
|
||||||
|
customPropertiesForReposCreateOrUpdateOrganizationValues: [
|
||||||
|
"PATCH /orgs/{org}/properties/values"
|
||||||
|
],
|
||||||
|
customPropertiesForReposDeleteOrganizationDefinition: [
|
||||||
|
"DELETE /orgs/{org}/properties/schema/{custom_property_name}"
|
||||||
|
],
|
||||||
|
customPropertiesForReposGetOrganizationDefinition: [
|
||||||
|
"GET /orgs/{org}/properties/schema/{custom_property_name}"
|
||||||
|
],
|
||||||
|
customPropertiesForReposGetOrganizationDefinitions: [
|
||||||
|
"GET /orgs/{org}/properties/schema"
|
||||||
|
],
|
||||||
|
customPropertiesForReposGetOrganizationValues: [
|
||||||
|
"GET /orgs/{org}/properties/values"
|
||||||
|
],
|
||||||
delete: ["DELETE /orgs/{org}"],
|
delete: ["DELETE /orgs/{org}"],
|
||||||
deleteAttestationsBulk: ["POST /orgs/{org}/attestations/delete-request"],
|
deleteAttestationsBulk: ["POST /orgs/{org}/attestations/delete-request"],
|
||||||
deleteAttestationsById: [
|
deleteAttestationsById: [
|
||||||
@@ -37148,10 +37535,18 @@ const Endpoints = {
|
|||||||
],
|
],
|
||||||
deleteIssueType: ["DELETE /orgs/{org}/issue-types/{issue_type_id}"],
|
deleteIssueType: ["DELETE /orgs/{org}/issue-types/{issue_type_id}"],
|
||||||
deleteWebhook: ["DELETE /orgs/{org}/hooks/{hook_id}"],
|
deleteWebhook: ["DELETE /orgs/{org}/hooks/{hook_id}"],
|
||||||
|
disableSelectedRepositoryImmutableReleasesOrganization: [
|
||||||
|
"DELETE /orgs/{org}/settings/immutable-releases/repositories/{repository_id}"
|
||||||
|
],
|
||||||
|
enableSelectedRepositoryImmutableReleasesOrganization: [
|
||||||
|
"PUT /orgs/{org}/settings/immutable-releases/repositories/{repository_id}"
|
||||||
|
],
|
||||||
get: ["GET /orgs/{org}"],
|
get: ["GET /orgs/{org}"],
|
||||||
getAllCustomProperties: ["GET /orgs/{org}/properties/schema"],
|
getImmutableReleasesSettings: [
|
||||||
getCustomProperty: [
|
"GET /orgs/{org}/settings/immutable-releases"
|
||||||
"GET /orgs/{org}/properties/schema/{custom_property_name}"
|
],
|
||||||
|
getImmutableReleasesSettingsRepositories: [
|
||||||
|
"GET /orgs/{org}/settings/immutable-releases/repositories"
|
||||||
],
|
],
|
||||||
getMembershipForAuthenticatedUser: ["GET /user/memberships/orgs/{org}"],
|
getMembershipForAuthenticatedUser: ["GET /user/memberships/orgs/{org}"],
|
||||||
getMembershipForUser: ["GET /orgs/{org}/memberships/{username}"],
|
getMembershipForUser: ["GET /orgs/{org}/memberships/{username}"],
|
||||||
@@ -37170,12 +37565,12 @@ const Endpoints = {
|
|||||||
listArtifactStorageRecords: [
|
listArtifactStorageRecords: [
|
||||||
"GET /orgs/{org}/artifacts/{subject_digest}/metadata/storage-records"
|
"GET /orgs/{org}/artifacts/{subject_digest}/metadata/storage-records"
|
||||||
],
|
],
|
||||||
|
listAttestationRepositories: ["GET /orgs/{org}/attestations/repositories"],
|
||||||
listAttestations: ["GET /orgs/{org}/attestations/{subject_digest}"],
|
listAttestations: ["GET /orgs/{org}/attestations/{subject_digest}"],
|
||||||
listAttestationsBulk: [
|
listAttestationsBulk: [
|
||||||
"POST /orgs/{org}/attestations/bulk-list{?per_page,before,after}"
|
"POST /orgs/{org}/attestations/bulk-list{?per_page,before,after}"
|
||||||
],
|
],
|
||||||
listBlockedUsers: ["GET /orgs/{org}/blocks"],
|
listBlockedUsers: ["GET /orgs/{org}/blocks"],
|
||||||
listCustomPropertiesValuesForRepos: ["GET /orgs/{org}/properties/values"],
|
|
||||||
listFailedInvitations: ["GET /orgs/{org}/failed_invitations"],
|
listFailedInvitations: ["GET /orgs/{org}/failed_invitations"],
|
||||||
listForAuthenticatedUser: ["GET /user/orgs"],
|
listForAuthenticatedUser: ["GET /user/orgs"],
|
||||||
listForUser: ["GET /users/{username}/orgs"],
|
listForUser: ["GET /users/{username}/orgs"],
|
||||||
@@ -37213,9 +37608,6 @@ const Endpoints = {
|
|||||||
redeliverWebhookDelivery: [
|
redeliverWebhookDelivery: [
|
||||||
"POST /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts"
|
"POST /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts"
|
||||||
],
|
],
|
||||||
removeCustomProperty: [
|
|
||||||
"DELETE /orgs/{org}/properties/schema/{custom_property_name}"
|
|
||||||
],
|
|
||||||
removeMember: ["DELETE /orgs/{org}/members/{username}"],
|
removeMember: ["DELETE /orgs/{org}/members/{username}"],
|
||||||
removeMembershipForUser: ["DELETE /orgs/{org}/memberships/{username}"],
|
removeMembershipForUser: ["DELETE /orgs/{org}/memberships/{username}"],
|
||||||
removeOutsideCollaborator: [
|
removeOutsideCollaborator: [
|
||||||
@@ -37249,6 +37641,12 @@ const Endpoints = {
|
|||||||
revokeOrgRoleUser: [
|
revokeOrgRoleUser: [
|
||||||
"DELETE /orgs/{org}/organization-roles/users/{username}/{role_id}"
|
"DELETE /orgs/{org}/organization-roles/users/{username}/{role_id}"
|
||||||
],
|
],
|
||||||
|
setImmutableReleasesSettings: [
|
||||||
|
"PUT /orgs/{org}/settings/immutable-releases"
|
||||||
|
],
|
||||||
|
setImmutableReleasesSettingsRepositories: [
|
||||||
|
"PUT /orgs/{org}/settings/immutable-releases/repositories"
|
||||||
|
],
|
||||||
setMembershipForUser: ["PUT /orgs/{org}/memberships/{username}"],
|
setMembershipForUser: ["PUT /orgs/{org}/memberships/{username}"],
|
||||||
setPublicMembershipForAuthenticatedUser: [
|
setPublicMembershipForAuthenticatedUser: [
|
||||||
"PUT /orgs/{org}/public_members/{username}"
|
"PUT /orgs/{org}/public_members/{username}"
|
||||||
@@ -37370,40 +37768,42 @@ const Endpoints = {
|
|||||||
},
|
},
|
||||||
projects: {
|
projects: {
|
||||||
addItemForOrg: ["POST /orgs/{org}/projectsV2/{project_number}/items"],
|
addItemForOrg: ["POST /orgs/{org}/projectsV2/{project_number}/items"],
|
||||||
addItemForUser: ["POST /users/{user_id}/projectsV2/{project_number}/items"],
|
addItemForUser: [
|
||||||
|
"POST /users/{username}/projectsV2/{project_number}/items"
|
||||||
|
],
|
||||||
deleteItemForOrg: [
|
deleteItemForOrg: [
|
||||||
"DELETE /orgs/{org}/projectsV2/{project_number}/items/{item_id}"
|
"DELETE /orgs/{org}/projectsV2/{project_number}/items/{item_id}"
|
||||||
],
|
],
|
||||||
deleteItemForUser: [
|
deleteItemForUser: [
|
||||||
"DELETE /users/{user_id}/projectsV2/{project_number}/items/{item_id}"
|
"DELETE /users/{username}/projectsV2/{project_number}/items/{item_id}"
|
||||||
],
|
],
|
||||||
getFieldForOrg: [
|
getFieldForOrg: [
|
||||||
"GET /orgs/{org}/projectsV2/{project_number}/fields/{field_id}"
|
"GET /orgs/{org}/projectsV2/{project_number}/fields/{field_id}"
|
||||||
],
|
],
|
||||||
getFieldForUser: [
|
getFieldForUser: [
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/fields/{field_id}"
|
"GET /users/{username}/projectsV2/{project_number}/fields/{field_id}"
|
||||||
],
|
],
|
||||||
getForOrg: ["GET /orgs/{org}/projectsV2/{project_number}"],
|
getForOrg: ["GET /orgs/{org}/projectsV2/{project_number}"],
|
||||||
getForUser: ["GET /users/{user_id}/projectsV2/{project_number}"],
|
getForUser: ["GET /users/{username}/projectsV2/{project_number}"],
|
||||||
getOrgItem: ["GET /orgs/{org}/projectsV2/{project_number}/items/{item_id}"],
|
getOrgItem: ["GET /orgs/{org}/projectsV2/{project_number}/items/{item_id}"],
|
||||||
getUserItem: [
|
getUserItem: [
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/items/{item_id}"
|
"GET /users/{username}/projectsV2/{project_number}/items/{item_id}"
|
||||||
],
|
],
|
||||||
listFieldsForOrg: ["GET /orgs/{org}/projectsV2/{project_number}/fields"],
|
listFieldsForOrg: ["GET /orgs/{org}/projectsV2/{project_number}/fields"],
|
||||||
listFieldsForUser: [
|
listFieldsForUser: [
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/fields"
|
"GET /users/{username}/projectsV2/{project_number}/fields"
|
||||||
],
|
],
|
||||||
listForOrg: ["GET /orgs/{org}/projectsV2"],
|
listForOrg: ["GET /orgs/{org}/projectsV2"],
|
||||||
listForUser: ["GET /users/{username}/projectsV2"],
|
listForUser: ["GET /users/{username}/projectsV2"],
|
||||||
listItemsForOrg: ["GET /orgs/{org}/projectsV2/{project_number}/items"],
|
listItemsForOrg: ["GET /orgs/{org}/projectsV2/{project_number}/items"],
|
||||||
listItemsForUser: [
|
listItemsForUser: [
|
||||||
"GET /users/{user_id}/projectsV2/{project_number}/items"
|
"GET /users/{username}/projectsV2/{project_number}/items"
|
||||||
],
|
],
|
||||||
updateItemForOrg: [
|
updateItemForOrg: [
|
||||||
"PATCH /orgs/{org}/projectsV2/{project_number}/items/{item_id}"
|
"PATCH /orgs/{org}/projectsV2/{project_number}/items/{item_id}"
|
||||||
],
|
],
|
||||||
updateItemForUser: [
|
updateItemForUser: [
|
||||||
"PATCH /users/{user_id}/projectsV2/{project_number}/items/{item_id}"
|
"PATCH /users/{username}/projectsV2/{project_number}/items/{item_id}"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
pulls: {
|
pulls: {
|
||||||
@@ -37566,6 +37966,7 @@ const Endpoints = {
|
|||||||
"GET /repos/{owner}/{repo}/automated-security-fixes"
|
"GET /repos/{owner}/{repo}/automated-security-fixes"
|
||||||
],
|
],
|
||||||
checkCollaborator: ["GET /repos/{owner}/{repo}/collaborators/{username}"],
|
checkCollaborator: ["GET /repos/{owner}/{repo}/collaborators/{username}"],
|
||||||
|
checkImmutableReleases: ["GET /repos/{owner}/{repo}/immutable-releases"],
|
||||||
checkPrivateVulnerabilityReporting: [
|
checkPrivateVulnerabilityReporting: [
|
||||||
"GET /repos/{owner}/{repo}/private-vulnerability-reporting"
|
"GET /repos/{owner}/{repo}/private-vulnerability-reporting"
|
||||||
],
|
],
|
||||||
@@ -37601,9 +38002,6 @@ const Endpoints = {
|
|||||||
createForAuthenticatedUser: ["POST /user/repos"],
|
createForAuthenticatedUser: ["POST /user/repos"],
|
||||||
createFork: ["POST /repos/{owner}/{repo}/forks"],
|
createFork: ["POST /repos/{owner}/{repo}/forks"],
|
||||||
createInOrg: ["POST /orgs/{org}/repos"],
|
createInOrg: ["POST /orgs/{org}/repos"],
|
||||||
createOrUpdateCustomPropertiesValues: [
|
|
||||||
"PATCH /repos/{owner}/{repo}/properties/values"
|
|
||||||
],
|
|
||||||
createOrUpdateEnvironment: [
|
createOrUpdateEnvironment: [
|
||||||
"PUT /repos/{owner}/{repo}/environments/{environment_name}"
|
"PUT /repos/{owner}/{repo}/environments/{environment_name}"
|
||||||
],
|
],
|
||||||
@@ -37617,6 +38015,12 @@ const Endpoints = {
|
|||||||
"POST /repos/{template_owner}/{template_repo}/generate"
|
"POST /repos/{template_owner}/{template_repo}/generate"
|
||||||
],
|
],
|
||||||
createWebhook: ["POST /repos/{owner}/{repo}/hooks"],
|
createWebhook: ["POST /repos/{owner}/{repo}/hooks"],
|
||||||
|
customPropertiesForReposCreateOrUpdateRepositoryValues: [
|
||||||
|
"PATCH /repos/{owner}/{repo}/properties/values"
|
||||||
|
],
|
||||||
|
customPropertiesForReposGetRepositoryValues: [
|
||||||
|
"GET /repos/{owner}/{repo}/properties/values"
|
||||||
|
],
|
||||||
declineInvitation: [
|
declineInvitation: [
|
||||||
"DELETE /user/repository_invitations/{invitation_id}",
|
"DELETE /user/repository_invitations/{invitation_id}",
|
||||||
{},
|
{},
|
||||||
@@ -37671,6 +38075,9 @@ const Endpoints = {
|
|||||||
disableDeploymentProtectionRule: [
|
disableDeploymentProtectionRule: [
|
||||||
"DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}"
|
"DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}"
|
||||||
],
|
],
|
||||||
|
disableImmutableReleases: [
|
||||||
|
"DELETE /repos/{owner}/{repo}/immutable-releases"
|
||||||
|
],
|
||||||
disablePrivateVulnerabilityReporting: [
|
disablePrivateVulnerabilityReporting: [
|
||||||
"DELETE /repos/{owner}/{repo}/private-vulnerability-reporting"
|
"DELETE /repos/{owner}/{repo}/private-vulnerability-reporting"
|
||||||
],
|
],
|
||||||
@@ -37687,6 +38094,7 @@ const Endpoints = {
|
|||||||
enableAutomatedSecurityFixes: [
|
enableAutomatedSecurityFixes: [
|
||||||
"PUT /repos/{owner}/{repo}/automated-security-fixes"
|
"PUT /repos/{owner}/{repo}/automated-security-fixes"
|
||||||
],
|
],
|
||||||
|
enableImmutableReleases: ["PUT /repos/{owner}/{repo}/immutable-releases"],
|
||||||
enablePrivateVulnerabilityReporting: [
|
enablePrivateVulnerabilityReporting: [
|
||||||
"PUT /repos/{owner}/{repo}/private-vulnerability-reporting"
|
"PUT /repos/{owner}/{repo}/private-vulnerability-reporting"
|
||||||
],
|
],
|
||||||
@@ -37738,7 +38146,6 @@ const Endpoints = {
|
|||||||
getCustomDeploymentProtectionRule: [
|
getCustomDeploymentProtectionRule: [
|
||||||
"GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}"
|
"GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}"
|
||||||
],
|
],
|
||||||
getCustomPropertiesValues: ["GET /repos/{owner}/{repo}/properties/values"],
|
|
||||||
getDeployKey: ["GET /repos/{owner}/{repo}/keys/{key_id}"],
|
getDeployKey: ["GET /repos/{owner}/{repo}/keys/{key_id}"],
|
||||||
getDeployment: ["GET /repos/{owner}/{repo}/deployments/{deployment_id}"],
|
getDeployment: ["GET /repos/{owner}/{repo}/deployments/{deployment_id}"],
|
||||||
getDeploymentBranchPolicy: [
|
getDeploymentBranchPolicy: [
|
||||||
@@ -37956,13 +38363,7 @@ const Endpoints = {
|
|||||||
search: {
|
search: {
|
||||||
code: ["GET /search/code"],
|
code: ["GET /search/code"],
|
||||||
commits: ["GET /search/commits"],
|
commits: ["GET /search/commits"],
|
||||||
issuesAndPullRequests: [
|
issuesAndPullRequests: ["GET /search/issues"],
|
||||||
"GET /search/issues",
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
deprecated: "octokit.rest.search.issuesAndPullRequests() is deprecated, see https://docs.github.com/rest/search/search#search-issues-and-pull-requests"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
labels: ["GET /search/labels"],
|
labels: ["GET /search/labels"],
|
||||||
repos: ["GET /search/repositories"],
|
repos: ["GET /search/repositories"],
|
||||||
topics: ["GET /search/topics"],
|
topics: ["GET /search/topics"],
|
||||||
@@ -37976,9 +38377,6 @@ const Endpoints = {
|
|||||||
"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}"
|
"GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}"
|
||||||
],
|
],
|
||||||
getScanHistory: ["GET /repos/{owner}/{repo}/secret-scanning/scan-history"],
|
getScanHistory: ["GET /repos/{owner}/{repo}/secret-scanning/scan-history"],
|
||||||
listAlertsForEnterprise: [
|
|
||||||
"GET /enterprises/{enterprise}/secret-scanning/alerts"
|
|
||||||
],
|
|
||||||
listAlertsForOrg: ["GET /orgs/{org}/secret-scanning/alerts"],
|
listAlertsForOrg: ["GET /orgs/{org}/secret-scanning/alerts"],
|
||||||
listAlertsForRepo: ["GET /repos/{owner}/{repo}/secret-scanning/alerts"],
|
listAlertsForRepo: ["GET /repos/{owner}/{repo}/secret-scanning/alerts"],
|
||||||
listLocationsForAlert: [
|
listLocationsForAlert: [
|
||||||
|
|||||||
@@ -2,6 +2,34 @@
|
|||||||
|
|
||||||
This document covers all caching-related configuration options for setup-uv.
|
This document covers all caching-related configuration options for setup-uv.
|
||||||
|
|
||||||
|
## Cache key
|
||||||
|
|
||||||
|
The cache key is automatically generated based on:
|
||||||
|
|
||||||
|
- **Architecture**: CPU architecture (e.g., `x86_64`, `aarch64`)
|
||||||
|
- **Platform**: OS platform type (e.g., `unknown-linux-gnu`, `unknown-linux-musl`, `apple-darwin`,
|
||||||
|
`pc-windows-msvc`)
|
||||||
|
- **OS version**: OS name and version (e.g., `ubuntu-22.04`, `macos-14`, `windows-2022`)
|
||||||
|
- **Python version**: The Python version in use
|
||||||
|
- **Cache options**: Whether pruning and Python caching are enabled
|
||||||
|
- **Dependency hash**: Hash of files matching `cache-dependency-glob`
|
||||||
|
- **Suffix**: Optional `cache-suffix` if provided
|
||||||
|
|
||||||
|
Including the OS version ensures that caches are not shared between different OS versions,
|
||||||
|
preventing binary incompatibility issues when runner images change.
|
||||||
|
|
||||||
|
The computed cache key is available as the `cache-key` output:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: Setup uv
|
||||||
|
id: setup-uv
|
||||||
|
uses: astral-sh/setup-uv@v7
|
||||||
|
with:
|
||||||
|
enable-cache: true
|
||||||
|
- name: Print cache key
|
||||||
|
run: echo "Cache key: ${{ steps.setup-uv.outputs.cache-key }}"
|
||||||
|
```
|
||||||
|
|
||||||
## Enable caching
|
## Enable caching
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
@@ -134,6 +162,10 @@ It defaults to `setup-uv-cache` in the `TMP` dir, `D:\a\_temp\setup-uv-cache` on
|
|||||||
> If you configured [cache-dir](https://docs.astral.sh/uv/reference/settings/#cache-dir) in your
|
> If you configured [cache-dir](https://docs.astral.sh/uv/reference/settings/#cache-dir) in your
|
||||||
> config file then it is also respected and this action will not set `UV_CACHE_DIR`.
|
> config file then it is also respected and this action will not set `UV_CACHE_DIR`.
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> If caching is disabled, you can still use `cache-local-path` so this action sets `UV_CACHE_DIR`
|
||||||
|
> to your desired path.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- name: Define a custom uv cache path
|
- name: Define a custom uv cache path
|
||||||
uses: astral-sh/setup-uv@v7
|
uses: astral-sh/setup-uv@v7
|
||||||
|
|||||||
326
package-lock.json
generated
326
package-lock.json
generated
@@ -15,17 +15,17 @@
|
|||||||
"@actions/glob": "^0.5.0",
|
"@actions/glob": "^0.5.0",
|
||||||
"@actions/io": "^1.1.3",
|
"@actions/io": "^1.1.3",
|
||||||
"@actions/tool-cache": "^2.0.2",
|
"@actions/tool-cache": "^2.0.2",
|
||||||
"@octokit/core": "^7.0.5",
|
"@octokit/core": "^7.0.6",
|
||||||
"@octokit/plugin-paginate-rest": "^13.2.1",
|
"@octokit/plugin-paginate-rest": "^14.0.0",
|
||||||
"@octokit/plugin-rest-endpoint-methods": "^16.1.1",
|
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
|
||||||
"@renovatebot/pep440": "^4.2.1",
|
"@renovatebot/pep440": "^4.2.1",
|
||||||
"smol-toml": "^1.4.2",
|
"smol-toml": "^1.4.2",
|
||||||
"undici": "5.28.5"
|
"undici": "5.28.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "2.3.0",
|
"@biomejs/biome": "2.3.7",
|
||||||
"@types/js-yaml": "^4.0.9",
|
"@types/js-yaml": "^4.0.9",
|
||||||
"@types/node": "^24.9.1",
|
"@types/node": "^24.10.1",
|
||||||
"@types/semver": "^7.7.1",
|
"@types/semver": "^7.7.1",
|
||||||
"@vercel/ncc": "^0.38.4",
|
"@vercel/ncc": "^0.38.4",
|
||||||
"jest": "^30.2.0",
|
"jest": "^30.2.0",
|
||||||
@@ -890,9 +890,9 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@biomejs/biome": {
|
"node_modules/@biomejs/biome": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/biome/-/biome-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/biome/-/biome-2.3.7.tgz",
|
||||||
"integrity": "sha512-shdUY5H3S3tJVUWoVWo5ua+GdPW5lRHf+b0IwZ4OC1o2zOKQECZ6l2KbU6t89FNhtd3Qx5eg5N7/UsQWGQbAFw==",
|
"integrity": "sha512-CTbAS/jNAiUc6rcq94BrTB8z83O9+BsgWj2sBCQg9rD6Wkh2gjfR87usjx0Ncx0zGXP1NKgT7JNglay5Zfs9jw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT OR Apache-2.0",
|
"license": "MIT OR Apache-2.0",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -906,20 +906,20 @@
|
|||||||
"url": "https://opencollective.com/biome"
|
"url": "https://opencollective.com/biome"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@biomejs/cli-darwin-arm64": "2.3.0",
|
"@biomejs/cli-darwin-arm64": "2.3.7",
|
||||||
"@biomejs/cli-darwin-x64": "2.3.0",
|
"@biomejs/cli-darwin-x64": "2.3.7",
|
||||||
"@biomejs/cli-linux-arm64": "2.3.0",
|
"@biomejs/cli-linux-arm64": "2.3.7",
|
||||||
"@biomejs/cli-linux-arm64-musl": "2.3.0",
|
"@biomejs/cli-linux-arm64-musl": "2.3.7",
|
||||||
"@biomejs/cli-linux-x64": "2.3.0",
|
"@biomejs/cli-linux-x64": "2.3.7",
|
||||||
"@biomejs/cli-linux-x64-musl": "2.3.0",
|
"@biomejs/cli-linux-x64-musl": "2.3.7",
|
||||||
"@biomejs/cli-win32-arm64": "2.3.0",
|
"@biomejs/cli-win32-arm64": "2.3.7",
|
||||||
"@biomejs/cli-win32-x64": "2.3.0"
|
"@biomejs/cli-win32-x64": "2.3.7"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@biomejs/cli-darwin-arm64": {
|
"node_modules/@biomejs/cli-darwin-arm64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-2.3.7.tgz",
|
||||||
"integrity": "sha512-3cJVT0Z5pbTkoBmbjmDZTDFYxIkRcrs9sYVJbIBHU8E6qQxgXAaBfSVjjCreG56rfDuQBr43GzwzmaHPcu4vlw==",
|
"integrity": "sha512-LirkamEwzIUULhXcf2D5b+NatXKeqhOwilM+5eRkbrnr6daKz9rsBL0kNZ16Hcy4b8RFq22SG4tcLwM+yx/wFA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@@ -934,9 +934,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@biomejs/cli-darwin-x64": {
|
"node_modules/@biomejs/cli-darwin-x64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-2.3.7.tgz",
|
||||||
"integrity": "sha512-6LIkhglh3UGjuDqJXsK42qCA0XkD1Ke4K/raFOii7QQPbM8Pia7Qj2Hji4XuF2/R78hRmEx7uKJH3t/Y9UahtQ==",
|
"integrity": "sha512-Q4TO633kvrMQkKIV7wmf8HXwF0dhdTD9S458LGE24TYgBjSRbuhvio4D5eOQzirEYg6eqxfs53ga/rbdd8nBKg==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
@@ -951,9 +951,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@biomejs/cli-linux-arm64": {
|
"node_modules/@biomejs/cli-linux-arm64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-2.3.7.tgz",
|
||||||
"integrity": "sha512-uhAsbXySX7xsXahegDg5h3CDgfMcRsJvWLFPG0pjkylgBb9lErbK2C0UINW52zhwg0cPISB09lxHPxCau4e2xA==",
|
"integrity": "sha512-inHOTdlstUBzgjDcx0ge71U4SVTbwAljmkfi3MC5WzsYCRhancqfeL+sa4Ke6v2ND53WIwCFD5hGsYExoI3EZQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@@ -968,9 +968,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@biomejs/cli-linux-arm64-musl": {
|
"node_modules/@biomejs/cli-linux-arm64-musl": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.3.7.tgz",
|
||||||
"integrity": "sha512-nDksoFdwZ2YrE7NiYDhtMhL2UgFn8Kb7Y0bYvnTAakHnqEdb4lKindtBc1f+xg2Snz0JQhJUYO7r9CDBosRU5w==",
|
"integrity": "sha512-/afy8lto4CB8scWfMdt+NoCZtatBUF62Tk3ilWH2w8ENd5spLhM77zKlFZEvsKJv9AFNHknMl03zO67CiklL2Q==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@@ -985,9 +985,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@biomejs/cli-linux-x64": {
|
"node_modules/@biomejs/cli-linux-x64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-2.3.7.tgz",
|
||||||
"integrity": "sha512-uxa8reA2s1VgoH8MhbGlCmMOt3JuSE1vJBifkh1ulaPiuk0SPx8cCdpnm9NWnTe2x/LfWInWx4sZ7muaXTPGGw==",
|
"integrity": "sha512-fJMc3ZEuo/NaMYo5rvoWjdSS5/uVSW+HPRQujucpZqm2ZCq71b8MKJ9U4th9yrv2L5+5NjPF0nqqILCl8HY/fg==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
@@ -1002,9 +1002,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@biomejs/cli-linux-x64-musl": {
|
"node_modules/@biomejs/cli-linux-x64-musl": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-2.3.7.tgz",
|
||||||
"integrity": "sha512-+i9UcJwl99uAhtRQDz9jUAh+Xkb097eekxs/D9j4deWDg5/yB/jPWzISe1nBHvlzTXsdUSj0VvB4Go2DSpKIMw==",
|
"integrity": "sha512-CQUtgH1tIN6e5wiYSJqzSwJumHYolNtaj1dwZGCnZXm2PZU1jOJof9TsyiP3bXNDb+VOR7oo7ZvY01If0W3iFQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
@@ -1019,9 +1019,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@biomejs/cli-win32-arm64": {
|
"node_modules/@biomejs/cli-win32-arm64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-2.3.7.tgz",
|
||||||
"integrity": "sha512-ynjmsJLIKrAjC3CCnKMMhzcnNy8dbQWjKfSU5YA0mIruTxBNMbkAJp+Pr2iV7/hFou+66ZSD/WV8hmLEmhUaXA==",
|
"integrity": "sha512-aJAE8eCNyRpcfx2JJAtsPtISnELJ0H4xVVSwnxm13bzI8RwbXMyVtxy2r5DV1xT3WiSP+7LxORcApWw0LM8HiA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@@ -1036,9 +1036,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@biomejs/cli-win32-x64": {
|
"node_modules/@biomejs/cli-win32-x64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-2.3.7.tgz",
|
||||||
"integrity": "sha512-zOCYmCRVkWXc9v8P7OLbLlGGMxQTKMvi+5IC4v7O8DkjLCOHRzRVK/Lno2pGZNo0lzKM60pcQOhH8HVkXMQdFg==",
|
"integrity": "sha512-pulzUshqv9Ed//MiE8MOUeeEkbkSHVDVY5Cz5wVAnH1DUqliCQG3j6s1POaITTFqFfo7AVIx2sWdKpx/GS+Nqw==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
@@ -1600,17 +1600,17 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/core": {
|
"node_modules/@octokit/core": {
|
||||||
"version": "7.0.5",
|
"version": "7.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.6.tgz",
|
||||||
"integrity": "sha512-t54CUOsFMappY1Jbzb7fetWeO0n6K0k/4+/ZpkS+3Joz8I4VcvY9OiEBFRYISqaI2fq5sCiPtAjRDOzVYG8m+Q==",
|
"integrity": "sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"peer": true,
|
"peer": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/auth-token": "^6.0.0",
|
"@octokit/auth-token": "^6.0.0",
|
||||||
"@octokit/graphql": "^9.0.2",
|
"@octokit/graphql": "^9.0.3",
|
||||||
"@octokit/request": "^10.0.4",
|
"@octokit/request": "^10.0.6",
|
||||||
"@octokit/request-error": "^7.0.1",
|
"@octokit/request-error": "^7.0.2",
|
||||||
"@octokit/types": "^15.0.0",
|
"@octokit/types": "^16.0.0",
|
||||||
"before-after-hook": "^4.0.0",
|
"before-after-hook": "^4.0.0",
|
||||||
"universal-user-agent": "^7.0.0"
|
"universal-user-agent": "^7.0.0"
|
||||||
},
|
},
|
||||||
@@ -1619,12 +1619,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/endpoint": {
|
"node_modules/@octokit/endpoint": {
|
||||||
"version": "11.0.1",
|
"version": "11.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-11.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-11.0.2.tgz",
|
||||||
"integrity": "sha512-7P1dRAZxuWAOPI7kXfio88trNi/MegQ0IJD3vfgC3b+LZo1Qe6gRJc2v0mz2USWWJOKrB2h5spXCzGbw+fAdqA==",
|
"integrity": "sha512-4zCpzP1fWc7QlqunZ5bSEjxc6yLAlRTnDwKtgXfcI/FxxGoqedDG8V2+xJ60bV2kODqcGB+nATdtap/XYq2NZQ==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/types": "^15.0.0",
|
"@octokit/types": "^16.0.0",
|
||||||
"universal-user-agent": "^7.0.2"
|
"universal-user-agent": "^7.0.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1632,13 +1632,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/graphql": {
|
"node_modules/@octokit/graphql": {
|
||||||
"version": "9.0.2",
|
"version": "9.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-9.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-9.0.3.tgz",
|
||||||
"integrity": "sha512-iz6KzZ7u95Fzy9Nt2L8cG88lGRMr/qy1Q36ih/XVzMIlPDMYwaNLE/ENhqmIzgPrlNWiYJkwmveEetvxAgFBJw==",
|
"integrity": "sha512-grAEuupr/C1rALFnXTv6ZQhFuL1D8G5y8CN04RgrO4FIPMrtm+mcZzFG7dcBm+nq+1ppNixu+Jd78aeJOYxlGA==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/request": "^10.0.4",
|
"@octokit/request": "^10.0.6",
|
||||||
"@octokit/types": "^15.0.0",
|
"@octokit/types": "^16.0.0",
|
||||||
"universal-user-agent": "^7.0.0"
|
"universal-user-agent": "^7.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1646,18 +1646,18 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/openapi-types": {
|
"node_modules/@octokit/openapi-types": {
|
||||||
"version": "26.0.0",
|
"version": "27.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-26.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-27.0.0.tgz",
|
||||||
"integrity": "sha512-7AtcfKtpo77j7Ts73b4OWhOZHTKo/gGY8bB3bNBQz4H+GRSWqx2yvj8TXRsbdTE0eRmYmXOEY66jM7mJ7LzfsA==",
|
"integrity": "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/plugin-paginate-rest": {
|
"node_modules/@octokit/plugin-paginate-rest": {
|
||||||
"version": "13.2.1",
|
"version": "14.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-13.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-14.0.0.tgz",
|
||||||
"integrity": "sha512-Tj4PkZyIL6eBMYcG/76QGsedF0+dWVeLhYprTmuFVVxzDW7PQh23tM0TP0z+1MvSkxB29YFZwnUX+cXfTiSdyw==",
|
"integrity": "sha512-fNVRE7ufJiAA3XUrha2omTA39M6IXIc6GIZLvlbsm8QOQCYvpq/LkMNGyFlB1d8hTDzsAXa3OKtybdMAYsV/fw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/types": "^15.0.1"
|
"@octokit/types": "^16.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 20"
|
"node": ">= 20"
|
||||||
@@ -1667,12 +1667,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/plugin-rest-endpoint-methods": {
|
"node_modules/@octokit/plugin-rest-endpoint-methods": {
|
||||||
"version": "16.1.1",
|
"version": "17.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-16.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-17.0.0.tgz",
|
||||||
"integrity": "sha512-VztDkhM0ketQYSh5Im3IcKWFZl7VIrrsCaHbDINkdYeiiAsJzjhS2xRFCSJgfN6VOcsoW4laMtsmf3HcNqIimg==",
|
"integrity": "sha512-B5yCyIlOJFPqUUeiD0cnBJwWJO8lkJs5d8+ze9QDP6SvfiXSz1BF+91+0MeI1d2yxgOhU/O+CvtiZ9jSkHhFAw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/types": "^15.0.1"
|
"@octokit/types": "^16.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 20"
|
"node": ">= 20"
|
||||||
@@ -1682,14 +1682,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/request": {
|
"node_modules/@octokit/request": {
|
||||||
"version": "10.0.5",
|
"version": "10.0.7",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/request/-/request-10.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/request/-/request-10.0.7.tgz",
|
||||||
"integrity": "sha512-TXnouHIYLtgDhKo+N6mXATnDBkV05VwbR0TtMWpgTHIoQdRQfCSzmy/LGqR1AbRMbijq/EckC/E3/ZNcU92NaQ==",
|
"integrity": "sha512-v93h0i1yu4idj8qFPZwjehoJx4j3Ntn+JhXsdJrG9pYaX6j/XRz2RmasMUHtNgQD39nrv/VwTWSqK0RNXR8upA==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/endpoint": "^11.0.1",
|
"@octokit/endpoint": "^11.0.2",
|
||||||
"@octokit/request-error": "^7.0.1",
|
"@octokit/request-error": "^7.0.2",
|
||||||
"@octokit/types": "^15.0.0",
|
"@octokit/types": "^16.0.0",
|
||||||
"fast-content-type-parse": "^3.0.0",
|
"fast-content-type-parse": "^3.0.0",
|
||||||
"universal-user-agent": "^7.0.2"
|
"universal-user-agent": "^7.0.2"
|
||||||
},
|
},
|
||||||
@@ -1698,24 +1698,24 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/request-error": {
|
"node_modules/@octokit/request-error": {
|
||||||
"version": "7.0.1",
|
"version": "7.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-7.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-7.1.0.tgz",
|
||||||
"integrity": "sha512-CZpFwV4+1uBrxu7Cw8E5NCXDWFNf18MSY23TdxCBgjw1tXXHvTrZVsXlW8hgFTOLw8RQR1BBrMvYRtuyaijHMA==",
|
"integrity": "sha512-KMQIfq5sOPpkQYajXHwnhjCC0slzCNScLHs9JafXc4RAJI+9f+jNDlBNaIMTvazOPLgb4BnlhGJOTbnN0wIjPw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/types": "^15.0.0"
|
"@octokit/types": "^16.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 20"
|
"node": ">= 20"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/types": {
|
"node_modules/@octokit/types": {
|
||||||
"version": "15.0.1",
|
"version": "16.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-15.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-16.0.0.tgz",
|
||||||
"integrity": "sha512-sdiirM93IYJ9ODDCBgmRPIboLbSkpLa5i+WLuXH8b8Atg+YMLAyLvDDhNWLV4OYd08tlvYfVm/dw88cqHWtw1Q==",
|
"integrity": "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/openapi-types": "^26.0.0"
|
"@octokit/openapi-types": "^27.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@opentelemetry/api": {
|
"node_modules/@opentelemetry/api": {
|
||||||
@@ -1900,9 +1900,9 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "24.9.1",
|
"version": "24.10.1",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.9.1.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz",
|
||||||
"integrity": "sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==",
|
"integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~7.16.0"
|
"undici-types": "~7.16.0"
|
||||||
@@ -6395,74 +6395,74 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"@biomejs/biome": {
|
"@biomejs/biome": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/biome/-/biome-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/biome/-/biome-2.3.7.tgz",
|
||||||
"integrity": "sha512-shdUY5H3S3tJVUWoVWo5ua+GdPW5lRHf+b0IwZ4OC1o2zOKQECZ6l2KbU6t89FNhtd3Qx5eg5N7/UsQWGQbAFw==",
|
"integrity": "sha512-CTbAS/jNAiUc6rcq94BrTB8z83O9+BsgWj2sBCQg9rD6Wkh2gjfR87usjx0Ncx0zGXP1NKgT7JNglay5Zfs9jw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@biomejs/cli-darwin-arm64": "2.3.0",
|
"@biomejs/cli-darwin-arm64": "2.3.7",
|
||||||
"@biomejs/cli-darwin-x64": "2.3.0",
|
"@biomejs/cli-darwin-x64": "2.3.7",
|
||||||
"@biomejs/cli-linux-arm64": "2.3.0",
|
"@biomejs/cli-linux-arm64": "2.3.7",
|
||||||
"@biomejs/cli-linux-arm64-musl": "2.3.0",
|
"@biomejs/cli-linux-arm64-musl": "2.3.7",
|
||||||
"@biomejs/cli-linux-x64": "2.3.0",
|
"@biomejs/cli-linux-x64": "2.3.7",
|
||||||
"@biomejs/cli-linux-x64-musl": "2.3.0",
|
"@biomejs/cli-linux-x64-musl": "2.3.7",
|
||||||
"@biomejs/cli-win32-arm64": "2.3.0",
|
"@biomejs/cli-win32-arm64": "2.3.7",
|
||||||
"@biomejs/cli-win32-x64": "2.3.0"
|
"@biomejs/cli-win32-x64": "2.3.7"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@biomejs/cli-darwin-arm64": {
|
"@biomejs/cli-darwin-arm64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-2.3.7.tgz",
|
||||||
"integrity": "sha512-3cJVT0Z5pbTkoBmbjmDZTDFYxIkRcrs9sYVJbIBHU8E6qQxgXAaBfSVjjCreG56rfDuQBr43GzwzmaHPcu4vlw==",
|
"integrity": "sha512-LirkamEwzIUULhXcf2D5b+NatXKeqhOwilM+5eRkbrnr6daKz9rsBL0kNZ16Hcy4b8RFq22SG4tcLwM+yx/wFA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
"@biomejs/cli-darwin-x64": {
|
"@biomejs/cli-darwin-x64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-2.3.7.tgz",
|
||||||
"integrity": "sha512-6LIkhglh3UGjuDqJXsK42qCA0XkD1Ke4K/raFOii7QQPbM8Pia7Qj2Hji4XuF2/R78hRmEx7uKJH3t/Y9UahtQ==",
|
"integrity": "sha512-Q4TO633kvrMQkKIV7wmf8HXwF0dhdTD9S458LGE24TYgBjSRbuhvio4D5eOQzirEYg6eqxfs53ga/rbdd8nBKg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
"@biomejs/cli-linux-arm64": {
|
"@biomejs/cli-linux-arm64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-2.3.7.tgz",
|
||||||
"integrity": "sha512-uhAsbXySX7xsXahegDg5h3CDgfMcRsJvWLFPG0pjkylgBb9lErbK2C0UINW52zhwg0cPISB09lxHPxCau4e2xA==",
|
"integrity": "sha512-inHOTdlstUBzgjDcx0ge71U4SVTbwAljmkfi3MC5WzsYCRhancqfeL+sa4Ke6v2ND53WIwCFD5hGsYExoI3EZQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
"@biomejs/cli-linux-arm64-musl": {
|
"@biomejs/cli-linux-arm64-musl": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.3.7.tgz",
|
||||||
"integrity": "sha512-nDksoFdwZ2YrE7NiYDhtMhL2UgFn8Kb7Y0bYvnTAakHnqEdb4lKindtBc1f+xg2Snz0JQhJUYO7r9CDBosRU5w==",
|
"integrity": "sha512-/afy8lto4CB8scWfMdt+NoCZtatBUF62Tk3ilWH2w8ENd5spLhM77zKlFZEvsKJv9AFNHknMl03zO67CiklL2Q==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
"@biomejs/cli-linux-x64": {
|
"@biomejs/cli-linux-x64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-2.3.7.tgz",
|
||||||
"integrity": "sha512-uxa8reA2s1VgoH8MhbGlCmMOt3JuSE1vJBifkh1ulaPiuk0SPx8cCdpnm9NWnTe2x/LfWInWx4sZ7muaXTPGGw==",
|
"integrity": "sha512-fJMc3ZEuo/NaMYo5rvoWjdSS5/uVSW+HPRQujucpZqm2ZCq71b8MKJ9U4th9yrv2L5+5NjPF0nqqILCl8HY/fg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
"@biomejs/cli-linux-x64-musl": {
|
"@biomejs/cli-linux-x64-musl": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-2.3.7.tgz",
|
||||||
"integrity": "sha512-+i9UcJwl99uAhtRQDz9jUAh+Xkb097eekxs/D9j4deWDg5/yB/jPWzISe1nBHvlzTXsdUSj0VvB4Go2DSpKIMw==",
|
"integrity": "sha512-CQUtgH1tIN6e5wiYSJqzSwJumHYolNtaj1dwZGCnZXm2PZU1jOJof9TsyiP3bXNDb+VOR7oo7ZvY01If0W3iFQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
"@biomejs/cli-win32-arm64": {
|
"@biomejs/cli-win32-arm64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-2.3.7.tgz",
|
||||||
"integrity": "sha512-ynjmsJLIKrAjC3CCnKMMhzcnNy8dbQWjKfSU5YA0mIruTxBNMbkAJp+Pr2iV7/hFou+66ZSD/WV8hmLEmhUaXA==",
|
"integrity": "sha512-aJAE8eCNyRpcfx2JJAtsPtISnELJ0H4xVVSwnxm13bzI8RwbXMyVtxy2r5DV1xT3WiSP+7LxORcApWw0LM8HiA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
"@biomejs/cli-win32-x64": {
|
"@biomejs/cli-win32-x64": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-2.3.7.tgz",
|
||||||
"integrity": "sha512-zOCYmCRVkWXc9v8P7OLbLlGGMxQTKMvi+5IC4v7O8DkjLCOHRzRVK/Lno2pGZNo0lzKM60pcQOhH8HVkXMQdFg==",
|
"integrity": "sha512-pulzUshqv9Ed//MiE8MOUeeEkbkSHVDVY5Cz5wVAnH1DUqliCQG3j6s1POaITTFqFfo7AVIx2sWdKpx/GS+Nqw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
@@ -6893,86 +6893,86 @@
|
|||||||
"integrity": "sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w=="
|
"integrity": "sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w=="
|
||||||
},
|
},
|
||||||
"@octokit/core": {
|
"@octokit/core": {
|
||||||
"version": "7.0.5",
|
"version": "7.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.6.tgz",
|
||||||
"integrity": "sha512-t54CUOsFMappY1Jbzb7fetWeO0n6K0k/4+/ZpkS+3Joz8I4VcvY9OiEBFRYISqaI2fq5sCiPtAjRDOzVYG8m+Q==",
|
"integrity": "sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q==",
|
||||||
"peer": true,
|
"peer": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@octokit/auth-token": "^6.0.0",
|
"@octokit/auth-token": "^6.0.0",
|
||||||
"@octokit/graphql": "^9.0.2",
|
"@octokit/graphql": "^9.0.3",
|
||||||
"@octokit/request": "^10.0.4",
|
"@octokit/request": "^10.0.6",
|
||||||
"@octokit/request-error": "^7.0.1",
|
"@octokit/request-error": "^7.0.2",
|
||||||
"@octokit/types": "^15.0.0",
|
"@octokit/types": "^16.0.0",
|
||||||
"before-after-hook": "^4.0.0",
|
"before-after-hook": "^4.0.0",
|
||||||
"universal-user-agent": "^7.0.0"
|
"universal-user-agent": "^7.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@octokit/endpoint": {
|
"@octokit/endpoint": {
|
||||||
"version": "11.0.1",
|
"version": "11.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-11.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-11.0.2.tgz",
|
||||||
"integrity": "sha512-7P1dRAZxuWAOPI7kXfio88trNi/MegQ0IJD3vfgC3b+LZo1Qe6gRJc2v0mz2USWWJOKrB2h5spXCzGbw+fAdqA==",
|
"integrity": "sha512-4zCpzP1fWc7QlqunZ5bSEjxc6yLAlRTnDwKtgXfcI/FxxGoqedDG8V2+xJ60bV2kODqcGB+nATdtap/XYq2NZQ==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@octokit/types": "^15.0.0",
|
"@octokit/types": "^16.0.0",
|
||||||
"universal-user-agent": "^7.0.2"
|
"universal-user-agent": "^7.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@octokit/graphql": {
|
"@octokit/graphql": {
|
||||||
"version": "9.0.2",
|
"version": "9.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-9.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-9.0.3.tgz",
|
||||||
"integrity": "sha512-iz6KzZ7u95Fzy9Nt2L8cG88lGRMr/qy1Q36ih/XVzMIlPDMYwaNLE/ENhqmIzgPrlNWiYJkwmveEetvxAgFBJw==",
|
"integrity": "sha512-grAEuupr/C1rALFnXTv6ZQhFuL1D8G5y8CN04RgrO4FIPMrtm+mcZzFG7dcBm+nq+1ppNixu+Jd78aeJOYxlGA==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@octokit/request": "^10.0.4",
|
"@octokit/request": "^10.0.6",
|
||||||
"@octokit/types": "^15.0.0",
|
"@octokit/types": "^16.0.0",
|
||||||
"universal-user-agent": "^7.0.0"
|
"universal-user-agent": "^7.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@octokit/openapi-types": {
|
"@octokit/openapi-types": {
|
||||||
"version": "26.0.0",
|
"version": "27.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-26.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-27.0.0.tgz",
|
||||||
"integrity": "sha512-7AtcfKtpo77j7Ts73b4OWhOZHTKo/gGY8bB3bNBQz4H+GRSWqx2yvj8TXRsbdTE0eRmYmXOEY66jM7mJ7LzfsA=="
|
"integrity": "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA=="
|
||||||
},
|
},
|
||||||
"@octokit/plugin-paginate-rest": {
|
"@octokit/plugin-paginate-rest": {
|
||||||
"version": "13.2.1",
|
"version": "14.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-13.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-14.0.0.tgz",
|
||||||
"integrity": "sha512-Tj4PkZyIL6eBMYcG/76QGsedF0+dWVeLhYprTmuFVVxzDW7PQh23tM0TP0z+1MvSkxB29YFZwnUX+cXfTiSdyw==",
|
"integrity": "sha512-fNVRE7ufJiAA3XUrha2omTA39M6IXIc6GIZLvlbsm8QOQCYvpq/LkMNGyFlB1d8hTDzsAXa3OKtybdMAYsV/fw==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@octokit/types": "^15.0.1"
|
"@octokit/types": "^16.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@octokit/plugin-rest-endpoint-methods": {
|
"@octokit/plugin-rest-endpoint-methods": {
|
||||||
"version": "16.1.1",
|
"version": "17.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-16.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-17.0.0.tgz",
|
||||||
"integrity": "sha512-VztDkhM0ketQYSh5Im3IcKWFZl7VIrrsCaHbDINkdYeiiAsJzjhS2xRFCSJgfN6VOcsoW4laMtsmf3HcNqIimg==",
|
"integrity": "sha512-B5yCyIlOJFPqUUeiD0cnBJwWJO8lkJs5d8+ze9QDP6SvfiXSz1BF+91+0MeI1d2yxgOhU/O+CvtiZ9jSkHhFAw==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@octokit/types": "^15.0.1"
|
"@octokit/types": "^16.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@octokit/request": {
|
"@octokit/request": {
|
||||||
"version": "10.0.5",
|
"version": "10.0.7",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/request/-/request-10.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/request/-/request-10.0.7.tgz",
|
||||||
"integrity": "sha512-TXnouHIYLtgDhKo+N6mXATnDBkV05VwbR0TtMWpgTHIoQdRQfCSzmy/LGqR1AbRMbijq/EckC/E3/ZNcU92NaQ==",
|
"integrity": "sha512-v93h0i1yu4idj8qFPZwjehoJx4j3Ntn+JhXsdJrG9pYaX6j/XRz2RmasMUHtNgQD39nrv/VwTWSqK0RNXR8upA==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@octokit/endpoint": "^11.0.1",
|
"@octokit/endpoint": "^11.0.2",
|
||||||
"@octokit/request-error": "^7.0.1",
|
"@octokit/request-error": "^7.0.2",
|
||||||
"@octokit/types": "^15.0.0",
|
"@octokit/types": "^16.0.0",
|
||||||
"fast-content-type-parse": "^3.0.0",
|
"fast-content-type-parse": "^3.0.0",
|
||||||
"universal-user-agent": "^7.0.2"
|
"universal-user-agent": "^7.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@octokit/request-error": {
|
"@octokit/request-error": {
|
||||||
"version": "7.0.1",
|
"version": "7.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-7.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-7.1.0.tgz",
|
||||||
"integrity": "sha512-CZpFwV4+1uBrxu7Cw8E5NCXDWFNf18MSY23TdxCBgjw1tXXHvTrZVsXlW8hgFTOLw8RQR1BBrMvYRtuyaijHMA==",
|
"integrity": "sha512-KMQIfq5sOPpkQYajXHwnhjCC0slzCNScLHs9JafXc4RAJI+9f+jNDlBNaIMTvazOPLgb4BnlhGJOTbnN0wIjPw==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@octokit/types": "^15.0.0"
|
"@octokit/types": "^16.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@octokit/types": {
|
"@octokit/types": {
|
||||||
"version": "15.0.1",
|
"version": "16.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-15.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-16.0.0.tgz",
|
||||||
"integrity": "sha512-sdiirM93IYJ9ODDCBgmRPIboLbSkpLa5i+WLuXH8b8Atg+YMLAyLvDDhNWLV4OYd08tlvYfVm/dw88cqHWtw1Q==",
|
"integrity": "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@octokit/openapi-types": "^26.0.0"
|
"@octokit/openapi-types": "^27.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@opentelemetry/api": {
|
"@opentelemetry/api": {
|
||||||
@@ -7126,9 +7126,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"@types/node": {
|
"@types/node": {
|
||||||
"version": "24.9.1",
|
"version": "24.10.1",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.9.1.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz",
|
||||||
"integrity": "sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==",
|
"integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"undici-types": "~7.16.0"
|
"undici-types": "~7.16.0"
|
||||||
}
|
}
|
||||||
|
|||||||
17
package.json
17
package.json
@@ -17,7 +17,12 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/astral-sh/setup-uv.git"
|
"url": "git+https://github.com/astral-sh/setup-uv.git"
|
||||||
},
|
},
|
||||||
"keywords": ["actions", "python", "setup", "uv"],
|
"keywords": [
|
||||||
|
"actions",
|
||||||
|
"python",
|
||||||
|
"setup",
|
||||||
|
"uv"
|
||||||
|
],
|
||||||
"author": "@eifinger",
|
"author": "@eifinger",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -27,17 +32,17 @@
|
|||||||
"@actions/glob": "^0.5.0",
|
"@actions/glob": "^0.5.0",
|
||||||
"@actions/io": "^1.1.3",
|
"@actions/io": "^1.1.3",
|
||||||
"@actions/tool-cache": "^2.0.2",
|
"@actions/tool-cache": "^2.0.2",
|
||||||
"@octokit/core": "^7.0.5",
|
"@octokit/core": "^7.0.6",
|
||||||
"@octokit/plugin-paginate-rest": "^13.2.1",
|
"@octokit/plugin-paginate-rest": "^14.0.0",
|
||||||
"@octokit/plugin-rest-endpoint-methods": "^16.1.1",
|
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
|
||||||
"@renovatebot/pep440": "^4.2.1",
|
"@renovatebot/pep440": "^4.2.1",
|
||||||
"smol-toml": "^1.4.2",
|
"smol-toml": "^1.4.2",
|
||||||
"undici": "5.28.5"
|
"undici": "5.28.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "2.3.0",
|
"@biomejs/biome": "2.3.7",
|
||||||
"@types/js-yaml": "^4.0.9",
|
"@types/js-yaml": "^4.0.9",
|
||||||
"@types/node": "^24.9.1",
|
"@types/node": "^24.10.1",
|
||||||
"@types/semver": "^7.7.1",
|
"@types/semver": "^7.7.1",
|
||||||
"@vercel/ncc": "^0.38.4",
|
"@vercel/ncc": "^0.38.4",
|
||||||
"jest": "^30.2.0",
|
"jest": "^30.2.0",
|
||||||
|
|||||||
110
src/cache/restore-cache.ts
vendored
110
src/cache/restore-cache.ts
vendored
@@ -1,6 +1,5 @@
|
|||||||
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 { hashFiles } from "../hash/hash-files";
|
import { hashFiles } from "../hash/hash-files";
|
||||||
import {
|
import {
|
||||||
cacheDependencyGlob,
|
cacheDependencyGlob,
|
||||||
@@ -9,46 +8,75 @@ import {
|
|||||||
cacheSuffix,
|
cacheSuffix,
|
||||||
pruneCache,
|
pruneCache,
|
||||||
pythonDir,
|
pythonDir,
|
||||||
pythonVersion as pythonVersionInput,
|
|
||||||
restoreCache as shouldRestoreCache,
|
restoreCache as shouldRestoreCache,
|
||||||
workingDirectory,
|
|
||||||
} from "../utils/inputs";
|
} from "../utils/inputs";
|
||||||
import { getArch, getPlatform } from "../utils/platforms";
|
import { getArch, getOSNameVersion, 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";
|
export const STATE_PYTHON_CACHE_MATCHED_KEY = "python-cache-matched-key";
|
||||||
|
|
||||||
export async function restoreCache(): Promise<void> {
|
const CACHE_VERSION = "2";
|
||||||
const cacheKey = await computeKeys();
|
|
||||||
|
export async function restoreCache(pythonVersion?: string): Promise<void> {
|
||||||
|
const cacheKey = await computeKeys(pythonVersion);
|
||||||
core.saveState(STATE_CACHE_KEY, cacheKey);
|
core.saveState(STATE_CACHE_KEY, cacheKey);
|
||||||
|
core.setOutput("cache-key", cacheKey);
|
||||||
|
|
||||||
if (!shouldRestoreCache) {
|
if (!shouldRestoreCache) {
|
||||||
core.info("restore-cache is false. Skipping restore cache step.");
|
core.info("restore-cache is false. Skipping restore cache step.");
|
||||||
|
core.setOutput("python-cache-hit", false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let matchedKey: string | undefined;
|
if (cacheLocalPath === undefined) {
|
||||||
core.info(
|
throw new Error(
|
||||||
`Trying to restore uv cache from GitHub Actions cache with key: ${cacheKey}`,
|
"cache-local-path is not set. Cannot restore cache without a valid cache path.",
|
||||||
);
|
);
|
||||||
const cachePaths = [cacheLocalPath];
|
|
||||||
if (cachePython) {
|
|
||||||
cachePaths.push(pythonDir);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await restoreCacheFromKey(
|
||||||
|
cacheKey,
|
||||||
|
cacheLocalPath.path,
|
||||||
|
STATE_CACHE_MATCHED_KEY,
|
||||||
|
"cache-hit",
|
||||||
|
);
|
||||||
|
|
||||||
|
if (cachePython) {
|
||||||
|
await restoreCacheFromKey(
|
||||||
|
`${cacheKey}-python`,
|
||||||
|
pythonDir,
|
||||||
|
STATE_PYTHON_CACHE_MATCHED_KEY,
|
||||||
|
"python-cache-hit",
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
core.setOutput("python-cache-hit", false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function restoreCacheFromKey(
|
||||||
|
cacheKey: string,
|
||||||
|
cachePath: string,
|
||||||
|
stateKey: string,
|
||||||
|
outputKey: string,
|
||||||
|
): Promise<void> {
|
||||||
|
core.info(
|
||||||
|
`Trying to restore cache from GitHub Actions cache with key: ${cacheKey}`,
|
||||||
|
);
|
||||||
|
let matchedKey: string | undefined;
|
||||||
try {
|
try {
|
||||||
matchedKey = await cache.restoreCache(cachePaths, cacheKey);
|
matchedKey = await cache.restoreCache([cachePath], 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(outputKey, false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
handleMatchResult(matchedKey, cacheKey);
|
handleMatchResult(matchedKey, cacheKey, stateKey, outputKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function computeKeys(): Promise<string> {
|
async function computeKeys(pythonVersion?: string): Promise<string> {
|
||||||
let cacheDependencyPathHash = "-";
|
let cacheDependencyPathHash = "-";
|
||||||
if (cacheDependencyGlob !== "") {
|
if (cacheDependencyGlob !== "") {
|
||||||
core.info(
|
core.info(
|
||||||
@@ -65,57 +93,27 @@ async function computeKeys(): Promise<string> {
|
|||||||
cacheDependencyPathHash = "-no-dependency-glob";
|
cacheDependencyPathHash = "-no-dependency-glob";
|
||||||
}
|
}
|
||||||
const suffix = cacheSuffix ? `-${cacheSuffix}` : "";
|
const suffix = cacheSuffix ? `-${cacheSuffix}` : "";
|
||||||
const pythonVersion = await getPythonVersion();
|
const version = pythonVersion ?? "unknown";
|
||||||
const platform = await getPlatform();
|
const platform = await getPlatform();
|
||||||
|
const osNameVersion = getOSNameVersion();
|
||||||
const pruned = pruneCache ? "-pruned" : "";
|
const pruned = pruneCache ? "-pruned" : "";
|
||||||
const python = cachePython ? "-py" : "";
|
const python = cachePython ? "-py" : "";
|
||||||
return `setup-uv-${CACHE_VERSION}-${getArch()}-${platform}-${pythonVersion}${pruned}${python}${cacheDependencyPathHash}${suffix}`;
|
return `setup-uv-${CACHE_VERSION}-${getArch()}-${platform}-${osNameVersion}-${version}${pruned}${python}${cacheDependencyPathHash}${suffix}`;
|
||||||
}
|
|
||||||
|
|
||||||
async function getPythonVersion(): Promise<string> {
|
|
||||||
if (pythonVersionInput !== "") {
|
|
||||||
return pythonVersionInput;
|
|
||||||
}
|
|
||||||
|
|
||||||
let output = "";
|
|
||||||
const options: exec.ExecOptions = {
|
|
||||||
listeners: {
|
|
||||||
stdout: (data: Buffer) => {
|
|
||||||
output += data.toString();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
silent: !core.isDebug(),
|
|
||||||
};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const execArgs = ["python", "find", "--directory", workingDirectory];
|
|
||||||
await exec.exec("uv", execArgs, options);
|
|
||||||
const pythonPath = output.trim();
|
|
||||||
|
|
||||||
output = "";
|
|
||||||
await exec.exec(pythonPath, ["--version"], options);
|
|
||||||
// output is like "Python 3.8.10"
|
|
||||||
return output.split(" ")[1].trim();
|
|
||||||
} catch (error) {
|
|
||||||
const err = error as Error;
|
|
||||||
core.debug(`Failed to get python version from uv. Error: ${err.message}`);
|
|
||||||
return "unknown";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleMatchResult(
|
function handleMatchResult(
|
||||||
matchedKey: string | undefined,
|
matchedKey: string | undefined,
|
||||||
primaryKey: string,
|
primaryKey: string,
|
||||||
|
stateKey: string,
|
||||||
|
outputKey: 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(outputKey, false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
core.saveState(STATE_CACHE_MATCHED_KEY, matchedKey);
|
core.saveState(stateKey, matchedKey);
|
||||||
core.info(
|
core.info(`cache restored from GitHub Actions cache with key: ${matchedKey}`);
|
||||||
`uv cache restored from GitHub Actions cache with key: ${matchedKey}`,
|
core.setOutput(outputKey, true);
|
||||||
);
|
|
||||||
core.setOutput("cache-hit", true);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,545 @@
|
|||||||
// AUTOGENERATED_DO_NOT_EDIT
|
// AUTOGENERATED_DO_NOT_EDIT
|
||||||
export const KNOWN_CHECKSUMS: { [key: string]: string } = {
|
export const KNOWN_CHECKSUMS: { [key: string]: string } = {
|
||||||
|
"aarch64-apple-darwin-0.9.26":
|
||||||
|
"fcf0a9ea6599c6ae28a4c854ac6da76f2c889354d7c36ce136ef071f7ab9721f",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.26":
|
||||||
|
"79e1398ec98681b1b0494ed3485b0f4565e98a7db109a3f205d0fcdc6a1992f7",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.26":
|
||||||
|
"f71040c59798f79c44c08a7a1c1af7de95a8d334ea924b47b67ad6b9632be270",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.26":
|
||||||
|
"ba8698c36c00c22efed4bd3506339b03c95604d001f02eaf6fbc814c9224d801",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.26":
|
||||||
|
"8baa850e6f7a4f8edeef411891780161e95682bf291c85405fdc331925c425c2",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.26":
|
||||||
|
"f9cf9806b3bd434b4aca5de1a8412502a29bcbc908848cdea18e32480964ab79",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.26":
|
||||||
|
"881df52998da192f0609be37abe445ab0d89f28daceecb171ea8a14088153aee",
|
||||||
|
"i686-pc-windows-msvc-0.9.26":
|
||||||
|
"2fa5e36d7dc3053962a95a2583b2bcc19aab2ec6c5d4c887cca58de819cf77dd",
|
||||||
|
"i686-unknown-linux-gnu-0.9.26":
|
||||||
|
"03548a2abd1d604724c9d65184b506d3eafef1b0a7d8cea974a083f5f9c9496f",
|
||||||
|
"i686-unknown-linux-musl-0.9.26":
|
||||||
|
"5208601b9baee1a04a604f441bd94a1ab91b511f142b27729b073f4286994f8f",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.26":
|
||||||
|
"6ac6baa2dd7db742ff58a2d54e3fc09693e69c878666bcacf9d49bc58decc98a",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.26":
|
||||||
|
"1a7fbd268b7520e03747022f879113545a5bd71cad02e9cbabd591b268b5a36c",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.26":
|
||||||
|
"9f202ad04cc398dc77a6efe20ea91ec044ad66e1f7a60777e6efd20a357f479a",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.26":
|
||||||
|
"f8e6b8f1264821add1ea21d592b4522300401f44ac4124fba9fea6874fd79797",
|
||||||
|
"x86_64-apple-darwin-0.9.26":
|
||||||
|
"171eb8c518313e157c5b4cec7b4f743bc6bab1bd23e09b646679a02d096a047f",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.26":
|
||||||
|
"eb02fd95d8e0eed462b4a67ecdd320d865b38c560bffcda9a0b87ec944bdf036",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.26":
|
||||||
|
"30ccbf0a66dc8727a02b0e245c583ee970bdafecf3a443c1686e1b30ec4939e8",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.26":
|
||||||
|
"708b752876aeeb753257e1d55470569789e465684c1d3bc1760db26360b6c28b",
|
||||||
|
"aarch64-apple-darwin-0.9.25":
|
||||||
|
"606b3c6949d971709f2526fa0d9f0fd23ccf60e09f117999b406b424af18a6a6",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.25":
|
||||||
|
"6a4c2a753a94d9639725b435f5d1a65bfa25cd196d448ad60841f5fe81ef0052",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.25":
|
||||||
|
"a8f1d71a42c4470251a880348b2d28d530018693324175084fa1749d267c98c6",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.25":
|
||||||
|
"11cddffc61826e3b7af02db37bc3ed8e9e6747dad328d45c8b02f89408afbf75",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.25":
|
||||||
|
"52f3a96605a7873ec44bb84c33ee08e717df61136fec121f715871cae5b779ec",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.25":
|
||||||
|
"7ae274742a5b2398bd75f9075536c7f0b3f99ebc8c6588c37e3bfcd9cc9d781d",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.25":
|
||||||
|
"77220a539dfffe576cdc9b9e9ab5432c07dd1b63915c859c227883af7ba00538",
|
||||||
|
"i686-pc-windows-msvc-0.9.25":
|
||||||
|
"55dbf32074a76e029410620e7e3fbef9762799c7dfcf539b098ccc0a64cac9a3",
|
||||||
|
"i686-unknown-linux-gnu-0.9.25":
|
||||||
|
"b9dae29f4e37bc89e69836e59169a51d8cac4da118b7548a20b2269b19c94cad",
|
||||||
|
"i686-unknown-linux-musl-0.9.25":
|
||||||
|
"a84a159856a0227c273e86594d9cf8fbf84c56bd4eeeb9a665c946304c49dbec",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.25":
|
||||||
|
"37bc519ebe5e4efb12fd155eb94512547a874f0e41251203b49d715f75eb5a20",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.25":
|
||||||
|
"a01a273b5cd64ece96d4589afbacaf5e99a0695f37ebe9a72fd6b2f7cf0a7071",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.25":
|
||||||
|
"9d9692f1bd5ff6d9db2c4bffc4ceeb8d8746ae03ddeca0b24a0f8fc9ea81b911",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.25":
|
||||||
|
"92d5e4504ef83f421a841381678f871bf2a8821a69d3374dd638e2014d4762ab",
|
||||||
|
"x86_64-apple-darwin-0.9.25":
|
||||||
|
"4982dfff14b3548bc85d0fa0abec6ab8ae62836b218bf1223741ba1392ef93bf",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.25":
|
||||||
|
"d63f8e59cf76bcce9cb8a3eac6c1a89adce0f89a29bacca978c9bf842f419277",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.25":
|
||||||
|
"fa1f4abfe101d43e820342210c3c6854028703770f81e95b119ed1e65ec81b35",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.25":
|
||||||
|
"700776c376ce36ed5b731fcd699e141d897551f5111907987b63897e0c1ad797",
|
||||||
|
"aarch64-apple-darwin-0.9.24":
|
||||||
|
"89661d9a16682197086df54bb43d0b03e58e23d4d9360fc8c6c0166f2828fd71",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.24":
|
||||||
|
"40ceb66af2667fc9b4d30a65ad8b8795d4effc39a44019b4218ad03f8f1d5a14",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.24":
|
||||||
|
"9b291a1a4f2fefc430e4fc49c00cb93eb448d41c5c79edf45211ceffedde3334",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.24":
|
||||||
|
"b16359904ede857b90b68168f10b0f6bf500858df9bed4e7156dbc59fd3f0747",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.24":
|
||||||
|
"b343d7f49ea5c0982c9696cbc5c7f96d7053cf8f9c7383a58d6c0c44fbeb6422",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.24":
|
||||||
|
"8d05b55fe2108ecab3995c2b656679a72c543fd9dc72eeb3a525106a709cfdcb",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.24":
|
||||||
|
"788d2bee1dfdb57a462f2a5c4e3d6e8c68ee9f9f1a938bdcdc00fa9e5edeaeec",
|
||||||
|
"i686-pc-windows-msvc-0.9.24":
|
||||||
|
"b49265a713cb3f874bcb373572095993d3098ab77cd2665483f53b24b788e5e9",
|
||||||
|
"i686-unknown-linux-gnu-0.9.24":
|
||||||
|
"940b8985c4d464c7cc69e40b17bf09d840b980028e1d82a3fb8dd007a737f29e",
|
||||||
|
"i686-unknown-linux-musl-0.9.24":
|
||||||
|
"4ffe6f377b7d68904d8d882af8adc85f2fa1bbccd26151785ff961adb67f2a99",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.24":
|
||||||
|
"1fbaff65544a2c36bbd8992e2abe6c50179401745dc00b5e12bded89794056a4",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.24":
|
||||||
|
"57ea84430ccf49f97184d9ee21102b250214fc6e6af4a87eefaaf8bb7c9c2b9a",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.24":
|
||||||
|
"81a884380f0ee954afd968140aaa55df19f2bee30d74f3c0c94a11d2265bb388",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.24":
|
||||||
|
"3da41f22f78f27a7764e303b07c68f5716f748128327c7d3d72f11c6b81b6c78",
|
||||||
|
"x86_64-apple-darwin-0.9.24":
|
||||||
|
"fda9b3203cce6ec3a37177440c33c4c1963c4957fff17e2820c60ab6ccd625da",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.24":
|
||||||
|
"cf9d6fa12017199d19c6f9a8f7f55811c8c04d70681b8cb6d89ffb179f08cf1f",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.24":
|
||||||
|
"fb13ad85106da6b21dd16613afca910994446fe94a78ee0b5bed9c75cd066078",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.24":
|
||||||
|
"cf307aa4271038daa334ca64e75aa40c0c085ce6fa0c0e6f21e41a2b62c7904d",
|
||||||
|
"aarch64-apple-darwin-0.9.23":
|
||||||
|
"3aae069424778d13ef45ebd2ec906c66ab10e459e7b33341a64cd371a3d70998",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.23":
|
||||||
|
"dfdb23dbfa6c89847e4163f0b3b683de889df7d9bdf95a3909dfbc6430106304",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.23":
|
||||||
|
"d60b0b2aee79f9d83897615fed427bee1ea4ebcb2f15b48dd522319ecdb3de91",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.23":
|
||||||
|
"ee987d943427ee24c1d3af79c7ad676950c9ad634e60a4d07e328d8a54fff92f",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.23":
|
||||||
|
"1950c235e76e007f75d30903dc5da6747a344c72a1608123feff720c134ecbfe",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.23":
|
||||||
|
"a7104ab491a0c2f0c58760bcb9a13cfb64c899e02a7b747c4d11da114b3f9114",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.23":
|
||||||
|
"c5d494337a5ca86ad83d6a887634fda3f8392560799e4236a44d76f8e27621b6",
|
||||||
|
"i686-pc-windows-msvc-0.9.23":
|
||||||
|
"94292f02b7484616bb3cd7361411540a5a52e952d149eb6faeec610b6657015d",
|
||||||
|
"i686-unknown-linux-gnu-0.9.23":
|
||||||
|
"627627174d31e6fa270e91c7b2988558e4b18b86cc31de9222b6cf3b7354e9b7",
|
||||||
|
"i686-unknown-linux-musl-0.9.23":
|
||||||
|
"5f65a0eb1f9067a4f5149275faba3bcb3af94dd68fbce7cd9e93ba86b5bc59c3",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.23":
|
||||||
|
"69e2925397d0e781e8525ad0fd22896a114ffa02f5055e7a360e4dda3796c24e",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.23":
|
||||||
|
"fb3ad2cb1a19f1bb4785580dc71837161147beab134fdc3eb4e8ccda577db1e0",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.23":
|
||||||
|
"0d1d9300e2df3155b0d0b071c292fb27f8213d91854decdfb27c293397dc8e0e",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.23":
|
||||||
|
"7d0b411a365b0cd8fad2b336c259743e7381676654adfbdb4f887b4136820cb8",
|
||||||
|
"x86_64-apple-darwin-0.9.23":
|
||||||
|
"b5bbfbd5d8c7effa24b505365ae306116fdac58880bc9b024ec4c89435d57728",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.23":
|
||||||
|
"bb6d2987906b27d3031640c4a909b6f7c134cd29674c41ef545c6e7d57dd6700",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.23":
|
||||||
|
"b7bd7d9b9c9c34327f1118f99fe8c298252787ea35f7b345b8bf639377f63217",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.23":
|
||||||
|
"a824a0f5f7aa67b668f54756284d458a25dea332da6e558d303890d134cc06d1",
|
||||||
|
"aarch64-apple-darwin-0.9.22":
|
||||||
|
"4bfc6dacc9bcc9e433a9214a658495ca082b94fd607949b6745a955f34ccbc3c",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.22":
|
||||||
|
"19b848523d5802279702f5df4ade6d45f17d111cf9e368883d4f6560f0426d49",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.22":
|
||||||
|
"2f8716c407d5da21b8a3e8609ed358147216aaab28b96b1d6d7f48e9bcc6254e",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.22":
|
||||||
|
"a400eaede62557af86bed6c5252a101aa1efd596698bb10c9400334fcc2847ec",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.22":
|
||||||
|
"23e0770034e31aaf47b0c84156b2e5ec7638ca0edc76a4cccb8bdc94bfd16159",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.22":
|
||||||
|
"db3ac49b78b3ac57c0e6e9a0ea61237a235447338594ad8e398e8074448bd071",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.22":
|
||||||
|
"c153ac78c571dbbd9bab54c954b93b496645efbd4d3a0689b03e04d0de17c30f",
|
||||||
|
"i686-pc-windows-msvc-0.9.22":
|
||||||
|
"f08889e9567feb1e802c9e588de60efef5a436630e4c211fbf4a2116928f69ab",
|
||||||
|
"i686-unknown-linux-gnu-0.9.22":
|
||||||
|
"841e534a28285dcadfea2ca0f848a9669df287990f93d64c6bf87a9794c98ec9",
|
||||||
|
"i686-unknown-linux-musl-0.9.22":
|
||||||
|
"b2c5322e188980afd4bc1afb19f4e8dee7000ad0e17ca754e97dab21c1d4d1f5",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.22":
|
||||||
|
"309c4a48d7f65cdf47aa7e1c5e02502556e04f486d46e9591f5b4196c92730a3",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.22":
|
||||||
|
"1e829630f8317cf3e9818c3ad1f9927fdc9d087cd38abb05f9587c19872a8560",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.22":
|
||||||
|
"d3036e36b330ad6caab68fa31c12c21f80c9b8cc7822416343a5100f09d6b640",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.22":
|
||||||
|
"aff367a5c6ffb87b9cebbda4372464ca6aff69a53c81a94f1d78541be9677b2d",
|
||||||
|
"x86_64-apple-darwin-0.9.22":
|
||||||
|
"c0057ad78b475f343739b1bbe223361c1054524c9edf310ee1dc85a050207f86",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.22":
|
||||||
|
"93a0a244f26eec208d8ea8077e3de743d9687ad76c190342722f1f57fa629457",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.22":
|
||||||
|
"e170aed70ac0225feee612e855d3a57ae73c61ffb22c7e52c3fd33b87c286508",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.22":
|
||||||
|
"84d087a8e77a223d80578919894f3103f46ca7c263250c3e0478ce7c38850349",
|
||||||
|
"aarch64-apple-darwin-0.9.21":
|
||||||
|
"473977236ef8ac5937c80de08a3599cb6ed6021d0e015e10f88076767877a153",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.21":
|
||||||
|
"54f66a44108b1b68583c9da0a515195d011189874ec9547710c032801726e042",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.21":
|
||||||
|
"416984484783a357170c43f98e7d2d203f1fb595d6b3b95131513c53e50986ef",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.21":
|
||||||
|
"03a49fb609888032dbc3be9fd114b50fc9bce8b73b3df319746ae08d1fbdea83",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.21":
|
||||||
|
"5d84273d9e79aa1262e11d50b4b4e61c7b33bbbf47c7f7e271cb07f89ac479c1",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.21":
|
||||||
|
"74b2a73b3569cbba8c73470eb45dfba393401c834dd432fc8bd2039b40b1dde6",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.21":
|
||||||
|
"fa3806603be42aad687bb97ff5939a32f5e1c21d565155299410ad445669ce11",
|
||||||
|
"i686-pc-windows-msvc-0.9.21":
|
||||||
|
"941e2b656cf9c94eac4b751933b24e5820247d938958c3d62d9d95d0e2409956",
|
||||||
|
"i686-unknown-linux-gnu-0.9.21":
|
||||||
|
"73fbd705cb4b5c071318afee896ba9984e3a14fcf7842435a93c43dc9ca0a12c",
|
||||||
|
"i686-unknown-linux-musl-0.9.21":
|
||||||
|
"c38f823354fff387758f6288ad184b104f47520b3cee7d53e92f3666b3466f55",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.21":
|
||||||
|
"2cf68ea2ff75c4a627101bfe22064d6646a03cd7ddb939c933f3d8127b8d5982",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.21":
|
||||||
|
"3ede0329f67f5db37914b5dfd6014c414d27e1bf0153dab8d5cc2e066da034dc",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.21":
|
||||||
|
"3b7b070afd9c7be5a6364f081081cf9fec2160b53eba46cad27304b8b158e4ab",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.21":
|
||||||
|
"34bd75d67a5819c9f796a78b1ec9ebd48021d87d2391b4cf282249c4d026f145",
|
||||||
|
"x86_64-apple-darwin-0.9.21":
|
||||||
|
"26390da48bd55e21ab62451a80ad240ef6df10d4c48ec199cbb34c18b4288983",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.21":
|
||||||
|
"d27952e73183ef8f6ee8c2a50cf8b3f2e08e01b6a9279a00a85cb261ea8d8337",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.21":
|
||||||
|
"0a1ab27383c28ef1c041f85cbbc609d8e3752dfb4b238d2ad97b208a52232baf",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.21":
|
||||||
|
"7abc29b3a06a99fb23564400fe884f5798a1786dc2ca05b6e0f70c53de748ab2",
|
||||||
|
"aarch64-apple-darwin-0.9.20":
|
||||||
|
"c3f4b03a5d526119d41fa8b8f255aa8053c49d787778df654895e3d174b1519a",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.20":
|
||||||
|
"ddba8b1ca82df9b49745c93855c670490d776027269cf7de404d951919c96ea7",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.20":
|
||||||
|
"0451ecac1d0ed43d5870927df84c3d1dc93d72cf1933310acfadce5ad457c587",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.20":
|
||||||
|
"d1b645d63c70da3f6f2368ea4dbc9dd5534b54be74ae32dee8941531c6874b6d",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.20":
|
||||||
|
"ddbaab7f1413f181bafc96c8b18af8e69372373798d2294d03d3935fd829c939",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.20":
|
||||||
|
"e1b2f5e4298878e6ac1137f744ba38b59ce68abd6a43878e66a1cac4dd7efd0e",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.20":
|
||||||
|
"afc4a709ad83773bafa4ba83afa44bb101e44b817c5ad620cb9c54b62fe52e4e",
|
||||||
|
"i686-pc-windows-msvc-0.9.20":
|
||||||
|
"d7e50a3bc433bbb08e7890206bec0623627e6a911a6c10322c98721bde1a9cb0",
|
||||||
|
"i686-unknown-linux-gnu-0.9.20":
|
||||||
|
"aec778b1c44607416102139b6bb6a7f53a313fce8ad1033049b10ac90ed3c597",
|
||||||
|
"i686-unknown-linux-musl-0.9.20":
|
||||||
|
"92dd40f272b65f8301f0f9559fe55ac99b340caba93fe1952172e3485494cbba",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.20":
|
||||||
|
"c2abda00a2b53cde9b6c8380ef9773749d341039771d7447df5647d935eb54c6",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.20":
|
||||||
|
"f40409d551a30081ada78cca7a1a260c02a7d16c912d73988d8e212324dea758",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.20":
|
||||||
|
"6dda223f877ff3eb3eba2fcf14abfd36280e5db1c0480addf5da5273ece087d6",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.20":
|
||||||
|
"8ca14c1a9fe47ad2293a321f061c7278b32d7bc200d2692662790ab6ccd395c1",
|
||||||
|
"x86_64-apple-darwin-0.9.20":
|
||||||
|
"0059dc2986e7032c12b7039e1a66e570ab5c3a41598263c76e5a9c4e7da9f971",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.20":
|
||||||
|
"be51ed9fcba5be4ac9c41a46aaf8af5cef86624fe27e2c645771b174069e049d",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.20":
|
||||||
|
"01ac5d872ab4cf6b11965c9df317f699882405f0319872fe3dbbb3adb045600b",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.20":
|
||||||
|
"0de686dcc02e0b045980779e7330f2deb98e6cd9ece40d3341bd45c6733e682d",
|
||||||
|
"aarch64-apple-darwin-0.9.18":
|
||||||
|
"dc3bee4abbb3bac267a3985a23ea7617d19d41ff381dbaf560ba415ad65af68f",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.18":
|
||||||
|
"fadb43ba13091f44e1786fc3967e65c7786d86192aa205d718307c649927cfc2",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.18":
|
||||||
|
"f8e23ec786b18660ade6b033b6191b7e9c283c872eeb8c4531d56a873decf160",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.18":
|
||||||
|
"b710ceb9889276cbd7ce04e2ca06b5bd3e288da465bd38f7dd17955c4e703a65",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.18":
|
||||||
|
"2219049d28baaa0764e0315996e26c70ef548a0ba59add7f42358575ab04b410",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.18":
|
||||||
|
"dddf55144884f5d83b9f5795f0b16d023abedf615505962a6ebcaaef2cb62815",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.18":
|
||||||
|
"265d49a8976a5956d3cab524e85e86df5397ab0daf6bd77f1494b0b9e1c00b9a",
|
||||||
|
"i686-pc-windows-msvc-0.9.18":
|
||||||
|
"52bd6fedef821a2412de73c31fdcf41c31b0a5c5886a416c3ba1a3d282ff02b8",
|
||||||
|
"i686-unknown-linux-gnu-0.9.18":
|
||||||
|
"6cc0437382adddd0439c874c41625539523725d551da9f9aecf7c0a3e86a1c77",
|
||||||
|
"i686-unknown-linux-musl-0.9.18":
|
||||||
|
"a727b054337ce453e98b80d6eccaa913cf542c155f3252503aff3e613735c640",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.18":
|
||||||
|
"522154f752a90513cedcc621071893e46fb05d025ce8f0d4523514e8a87417d7",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.18":
|
||||||
|
"0660534d548800b17d2fc1dcdaf0f284e48ca3e34fff2b8b5c1797610e18fc0e",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.18":
|
||||||
|
"db6f5cbbc56a7212e61445a8cd1fcf880dc2906b4cac8f945320f0ab8eb9bf75",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.18":
|
||||||
|
"bfa789548a345189b70d9069d9d7ef8f9c2236f0d10e2ae47a13549ffded5b84",
|
||||||
|
"x86_64-apple-darwin-0.9.18":
|
||||||
|
"f86836c637333c65bbc7902acc9c49888eef9fbd15dccbc1946b10e30b041073",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.18":
|
||||||
|
"28cbe5d30907a774bfe27a517a39b494ec6f7d3816bda8bbf6f9645490449182",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.18":
|
||||||
|
"c2def3db178ade63933fa15ffc96e882c196ce53e06173dcee05b36c5f6f68f5",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.18":
|
||||||
|
"a55ae2d0d53c8f6541bb4d6afc95857ff33a97de8f1d23e9d09acdcb865c4a00",
|
||||||
|
"aarch64-apple-darwin-0.9.17":
|
||||||
|
"a1e1464aa1d04d5e5fa700aa2f2e10397d1114e835dbd56be25ba65c9a31bd99",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.17":
|
||||||
|
"28423a27ad1d82347c00411a6792567119b3c1cfe775d3312c0e08a6b489be5b",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.17":
|
||||||
|
"e9eba97b7169e47fd3c926e409f0b714820f0befc23b3ae062780586a793e4cc",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.17":
|
||||||
|
"f6f48a301f8e855765af42ef50257af0cebc9c5439dfdcbc188142941aea45ca",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.17":
|
||||||
|
"4d80f3509b6351882a64c1dd08f72a80e2b27f055a996295ef1f935bc3efcdde",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.17":
|
||||||
|
"30a6c041429e2176062573f33c5c44307cb756264224bcb005723a6e18cff34c",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.17":
|
||||||
|
"6b034dc63735c2a4541430cbece688e28bce51a09e2ad1ea2c1646a6b24cf1c3",
|
||||||
|
"i686-pc-windows-msvc-0.9.17":
|
||||||
|
"6e93737710e31bf73fcc3b4b6da616bd341e9c6baf1162ddc1e7f65884063f50",
|
||||||
|
"i686-unknown-linux-gnu-0.9.17":
|
||||||
|
"d2426a6d10bedd83524599bb0fbe0ba22e681ed45e892b4fd29086b424daf02a",
|
||||||
|
"i686-unknown-linux-musl-0.9.17":
|
||||||
|
"988c7702a2e88092b30f16fb7f8c18284a8062044cf57e6abd1dfeae82aa6377",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.17":
|
||||||
|
"5ad301d9fa15e0791ef96abd83f0ed97e7ac1191b4b7578caaad3151633fb17c",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.17":
|
||||||
|
"4958185c5febf22f1c4c84944334cb0d9262c2c2c93faf30c1e0abd26f9d94fa",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.17":
|
||||||
|
"feed7cc7b5fc8a99e683ee1761cf99e3da12b60a2a413b7b87a0447726a66369",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.17":
|
||||||
|
"a297518913a0f0e4af1bce434440ca9d415728aaf828c7def0e913aa5c46da8f",
|
||||||
|
"x86_64-apple-darwin-0.9.17":
|
||||||
|
"249e7fb18d45c06ba283c48f0a8e586ecc5fbb9e8dad0923c4169a7c4db815b2",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.17":
|
||||||
|
"ebc76197bf3e1a58f9dac6f70f49b0ebd3e6907ab35289ce228bce5ba8a3f201",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.17":
|
||||||
|
"0114d54f9aafd07516cf1cadfe72afa970f5fd293fbe82dd924b8a7b42c984d8",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.17":
|
||||||
|
"ab616c1851e7b1ed377a9ff3997dcee184bea7eda0b20bc8607abba6c469cbad",
|
||||||
|
"aarch64-apple-darwin-0.9.16":
|
||||||
|
"db6d7fb299c35dc9bbbeb89cfa9aa55a9584f637d370c0a4c62a50df9c9294a7",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.16":
|
||||||
|
"591c73f47dfec72f9d242eebcb36197f27ad652a59d70e70db5c52018684d78e",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.16":
|
||||||
|
"a8e9e3f7e621e212d9663ea28827bd8fb9ec11c453ae88d520b48e969e9ff5db",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.16":
|
||||||
|
"cb6730e083f17b38aea88c2bdfc3d4c834a832444087d30d7914bd460ae15b79",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.16":
|
||||||
|
"4c2447ff0aad62934605252eaf6372efb82fb38330b88785e162929491870186",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.16":
|
||||||
|
"5a09476442563f6ee32d864d89a87490bf5a850c987898c648ef57608c5899cb",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.16":
|
||||||
|
"180846487d6baa1ca9d4cd90a0aaf38f7466d3c211c219bd4d7ffbbbc5077ef2",
|
||||||
|
"i686-pc-windows-msvc-0.9.16":
|
||||||
|
"f6921ace765a2905c0cda8bf8185ecd60d83060da4b2904a28b5a8c23ffc7aa2",
|
||||||
|
"i686-unknown-linux-gnu-0.9.16":
|
||||||
|
"1cdb9a2086a5d1ea37e219c45407730ef3e7711737b71fae49d1396918f4cdba",
|
||||||
|
"i686-unknown-linux-musl-0.9.16":
|
||||||
|
"f8b0159c52bc43cbe598c52dd43ca911c22c6b9da992f3604434b23d21ac5ff6",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.16":
|
||||||
|
"40c39d344c92c6a877fdfe89db8a5f84990dbb7097e529122bd7d90d1975eb90",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.16":
|
||||||
|
"982167ebae22efbda212ccbacc582b00486150695d83fca94d39c3422a0f8865",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.16":
|
||||||
|
"b94ef3afa9bc94288e069162143ec20ed1d103d7631a17ca14c6ac28e8825baa",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.16":
|
||||||
|
"cd32014282b2d2de53eb0176004dffddec77f0afbe76713f57c245e08cdf2b21",
|
||||||
|
"x86_64-apple-darwin-0.9.16":
|
||||||
|
"e1ba1992e163f8b9d54d1cd1501002f019f4b729dec2a197e79a56d354ec2773",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.16":
|
||||||
|
"e498a1d5983da7727af96b63ddfcd52ee883173552664ad0b629b3d4c7a46e91",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.16":
|
||||||
|
"3adbf5322471b53a61483b4a5d091e70c32231ebc63fd327fae7b844cbcd3e01",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.16":
|
||||||
|
"35a26bea6aad2c8eb468cdf69baccc7ab79b3d0971a76a6741a687535a2acfad",
|
||||||
|
"aarch64-apple-darwin-0.9.15":
|
||||||
|
"388029510fdf64771745e9fb85cd6ec042580678a9e61c90fe355301f1c42f1e",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.15":
|
||||||
|
"19422893deba37feb4b4191b43be89525ac48bd378f9fdbf2d5bca44319f8c19",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.15":
|
||||||
|
"d89430e201f629b203975c605cd6bfe85afc2bc0781d95838e2b5177a03b1545",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.15":
|
||||||
|
"41f6ef4f86e9f8015bc31e9ca4fd44a6e2c80fc0b75d6eb74063f64ca15177c7",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.15":
|
||||||
|
"c85740e8c22187f82e3dad042d412991076d5701c7e1a4eba9ae1166f08f769b",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.15":
|
||||||
|
"d30d648e4c1c76110ee78953b43ecb8c356cda438a071a60c97308f9a7d2cf27",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.15":
|
||||||
|
"a1fa385da85131e071f9a6cbde89456945ea821609624e80f9b4d8877b8fbcdb",
|
||||||
|
"i686-pc-windows-msvc-0.9.15":
|
||||||
|
"7dabeb4719dedc1f690e4d5e9641d92c6b17e04245015d64511d207dbb1792d8",
|
||||||
|
"i686-unknown-linux-gnu-0.9.15":
|
||||||
|
"806e2e49c539a030336c83cc8dd9fe6250a70b1f8fb15ecb165837ff330f4ee8",
|
||||||
|
"i686-unknown-linux-musl-0.9.15":
|
||||||
|
"7ab63f3549f3fc61bab32f9526a6a3ba750dedb7f609a345a4205e41fcd91e92",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.15":
|
||||||
|
"b5b72a9053e4ad1c5baa68c3c8ae728567d8d9847f8cc852e0c6fabea9307647",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.15":
|
||||||
|
"880b977489a0a580df04cf9020968bf05553bccd8dd48375a0c7cb6dd8048f58",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.15":
|
||||||
|
"cb993da480f90b226bca66a1f54c4a0419a245d07d3d0e30a3f8c9a5b1f8fd2a",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.15":
|
||||||
|
"e0cac629299a49336e92a13684671bbf50933749412f480e051a4071a619fcd8",
|
||||||
|
"x86_64-apple-darwin-0.9.15":
|
||||||
|
"a7d9ae35ce2d192cb0356f07439cfc6768d4dff8e95ae69f821e8fbe7bcb0e09",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.15":
|
||||||
|
"a6887c93a54c46de7dcc0bc798f84a130d7f411124ad43252716f75d0c2c33e0",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.15":
|
||||||
|
"2053df0089327569cddd6afea920c2285b482d9b123f5db9f658273e96ab792c",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.15":
|
||||||
|
"7037889adb182ce50379b3a789154ad6be00397b892fec9e93e11c457945aec0",
|
||||||
|
"aarch64-apple-darwin-0.9.14":
|
||||||
|
"5267ecb62737b2ec0d61fd40e93c20d0a201eba96588582633f725792c778e00",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.14":
|
||||||
|
"966f4ddb5450ade2be0989bb3d4cc4ff66ec316ad714618f2391712ec3660908",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.14":
|
||||||
|
"b19bac23c34490b46f024636f164889b14403ab262118e2f97224053fc17ed8c",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.14":
|
||||||
|
"631ac3b88a77ec1af35297fdecc0b60b3eef16482617e3a2a5805bd667166437",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.14":
|
||||||
|
"a5e112d7ec880c2fe9bb95500d3e6f148e68ca7ff2dd88ab0f8d966e14ef3c9d",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.14":
|
||||||
|
"09449988d71401c37e8a7db2eb381e4a931c6394b7c1c9db7e444c2948f16677",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.14":
|
||||||
|
"b7273fc488ac5ae624ab5f657410d44443f30643b77b0ac0d1fdec0f7dee7b95",
|
||||||
|
"i686-pc-windows-msvc-0.9.14":
|
||||||
|
"b361e46aa3d9fa94850fbf006deff3c23f1aa1392ec78da598b5e3af0349ae23",
|
||||||
|
"i686-unknown-linux-gnu-0.9.14":
|
||||||
|
"106d70d5a9034d06ad1c2c6b028e6b0b77816f5de34d42f4e5c88fd5d5a0a8b0",
|
||||||
|
"i686-unknown-linux-musl-0.9.14":
|
||||||
|
"2b9685ea197030fbcd327f5a96012c0d8a468db35c36e84b683b944b696d853a",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.14":
|
||||||
|
"1cdb82fa8fc213149dd34bed755ba2ec8faef9d45a4206799256b2926c1495d9",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.14":
|
||||||
|
"9ae475bb30150d12633283dd73707fc059bece75e2c42288bf35212b5e6f09ec",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.14":
|
||||||
|
"96abad8a9324bd756905ab705ef853e036b3725242161682e7ceab2bf4081186",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.14":
|
||||||
|
"f5250473bd8a036b78f4ec19450eb3efe743232d688f770ea2a92f21da7fb417",
|
||||||
|
"x86_64-apple-darwin-0.9.14":
|
||||||
|
"276fe2605a0ba8306a875101e3a11bc5b93e2bce0b6b3b6c49c9ad14507d9dba",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.14":
|
||||||
|
"7ca7a43da656d9c5fd4b40ce6e8de19bc46d51e026c9dfd4909c1bc8b25f88bc",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.14":
|
||||||
|
"e72024e390fed178072e0c9b262c052d89ccff32a5522504f4991d6265aff411",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.14":
|
||||||
|
"2b9636963c700a595d476e387eb8041973d30c5add3193a8710a4306442ee74b",
|
||||||
|
"aarch64-apple-darwin-0.9.13":
|
||||||
|
"9c594dce1c237e11680be2b6d1331448eeb6f8a1453fb851a66a40291bb624de",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.13":
|
||||||
|
"761e29d5a67ca61f1d19c20ce935a9fd1f0011efb0e00f1efb20b0801e06b3c4",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.13":
|
||||||
|
"c221d04810f873a7aa8bae9aa6ed721e600e56534980df1363952386a4fcdcc5",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.13":
|
||||||
|
"5a81540af68e28df324d01d79900e7b86c659e8167cb236528b8e6050d74f94e",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.13":
|
||||||
|
"35043814a4eff41141943834e70faa8de54a4a9f6635e0993382ac2ee06651bf",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.13":
|
||||||
|
"a6c99ae8fdd21e58b8908ecf4f521d2045e297572d899fdd6b59e14d1095600c",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.13":
|
||||||
|
"8a7655f116f90380a9b9e5a11cf8dc37c5a898b01087d48a801a59165eb2e42c",
|
||||||
|
"i686-pc-windows-msvc-0.9.13":
|
||||||
|
"be134c7576ba494db286a2ccc2ada117b4709e67090264d81891221ea366f2ef",
|
||||||
|
"i686-unknown-linux-gnu-0.9.13":
|
||||||
|
"b0884051fdf28461db2f1d4f0968cfcc4ad51539195638beb2656cba863a9895",
|
||||||
|
"i686-unknown-linux-musl-0.9.13":
|
||||||
|
"839215a614165993ee4daecb25857f17d81640ca88bb2874129a92451ac109f3",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.13":
|
||||||
|
"735fd044e22dbcda6d174d9dc7f007a2782610509be4bc9c0bdec18eb0f76684",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.13":
|
||||||
|
"bac44db58d9e4fc9f1ebc6c03d4ef73d10ae871569a19099d348803e1b09a763",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.13":
|
||||||
|
"189ce36262a01fc411e85dc6d2cb8dc262b9ba2ce5bc1e6f3ba2bb284a190b95",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.13":
|
||||||
|
"037fc4a382a2d591429a35078cce5ff44170e2d14fa5fa4625902f36b8aa892a",
|
||||||
|
"x86_64-apple-darwin-0.9.13":
|
||||||
|
"571cb1623681c439af892335c729c272266e836a9ebcb627f34f8012c6459d9d",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.13":
|
||||||
|
"cdfb04512c9184939f16eea02644a7133b4e41233ead69122d49847d29a45538",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.13":
|
||||||
|
"c45a44144bf23a2182e143227b4ad0bbe41a2bb7161a637c02e968906af53fd1",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.13":
|
||||||
|
"04cf326d2d742ce5c8890fdc0b9f71bd707be8640979bf6e53ddd52da74dfb41",
|
||||||
|
"aarch64-apple-darwin-0.9.12":
|
||||||
|
"6bf1148aa48bc42853e8216982a89f6909e1932a51f4d8dce27815e8954e4664",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.12":
|
||||||
|
"0975aff9837edcd97f2f781ff78754929ee13386708b76a5f223ed41b5741fec",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.12":
|
||||||
|
"3c4dd18c1db6bd1af3b84ea3b3cc34dd9d8b955d3e700d1e1e4a18249decbe69",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.12":
|
||||||
|
"e953307caacdcf8a5bbac510423b2e64840428244a542ae2d7a6ca79c2931c24",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.12":
|
||||||
|
"3f8ede818c4a7d8f7f3069eb4034dcdea85342d7b952b269cf17bd2854a9e028",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.12":
|
||||||
|
"2f06cb797ba7c4f5f1774331d4e15f912b1e8035e49c9ad5f510378fd2d129dc",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.12":
|
||||||
|
"d72ecd42c3657c1e6ca76adc0d98c0576751da8e115cbfbb2cbd36be3f8c8638",
|
||||||
|
"i686-pc-windows-msvc-0.9.12":
|
||||||
|
"e140404f281a6427faac4d4d0fab467f3e305ae6ba6ecfab0d149ad6815a2c04",
|
||||||
|
"i686-unknown-linux-gnu-0.9.12":
|
||||||
|
"a56311ec3dfa0fa0760e763dcd0879f5a5c21aa5342b9290d2650b014fec49c8",
|
||||||
|
"i686-unknown-linux-musl-0.9.12":
|
||||||
|
"1ac8ad42c48eebdc0d62ae78707d4ca2727d0c88ec00fbdd07d0655f023e2ab9",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.12":
|
||||||
|
"89f4a9122dfd30dd51db572513e5db4a05e29abe752405d751b92fe6f30990e2",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.12":
|
||||||
|
"2941ffdf84340c8416cec8beb15c35b92afb1185a08cae05b8637c26225473d5",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.12":
|
||||||
|
"0f95884ded94f98d3b8a1f2f9f78f6da4eea5e20f718185a0da4778ab0798e9b",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.12":
|
||||||
|
"a73662924261b0c581b762040c27fb839aca9164b13e017ca5162ae3dbb51c50",
|
||||||
|
"x86_64-apple-darwin-0.9.12":
|
||||||
|
"b91852ea80e1c137f6246c8b01bc52d1c7213bff8d82cccd532ce2272c56d482",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.12":
|
||||||
|
"ee09ed595c54ee70fb29b596c9a15aa71f5d7a1191417985a0684a1dd644a8da",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.12":
|
||||||
|
"4e43dac0c82b12b66564d91d5649350377b771d1df84374d9be1b9e6c8dd8152",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.12":
|
||||||
|
"3621344419cedb7625f0c07c54e876d0a6bb5576b39879b118ed96a6d104fd11",
|
||||||
|
"aarch64-apple-darwin-0.9.11":
|
||||||
|
"594d9f4cfbd21d5a2f34b0352bf423066a9dab1733c90b5d40e3e227506deb03",
|
||||||
|
"aarch64-pc-windows-msvc-0.9.11":
|
||||||
|
"04964328f8e8a4e868153f65a29a927c5d3d8f16c343686bbab5147c72858903",
|
||||||
|
"aarch64-unknown-linux-gnu-0.9.11":
|
||||||
|
"b695e1796449ea85f967b749f87283678ce284e2c042b4b6fa51fa36ec06f47c",
|
||||||
|
"aarch64-unknown-linux-musl-0.9.11":
|
||||||
|
"26b33bb65714247dd865216e71c5528030c85c6de9ce06172152158ed7add70c",
|
||||||
|
"arm-unknown-linux-musleabihf-0.9.11":
|
||||||
|
"6b64be48c461ec1b25d8695d407d6189c660ca2f25ab5978476ae2cff516ce32",
|
||||||
|
"armv7-unknown-linux-gnueabihf-0.9.11":
|
||||||
|
"2212adfff866e062dcea7d1ef99935043a49e3d77a18c9258851b7d23c5c3f90",
|
||||||
|
"armv7-unknown-linux-musleabihf-0.9.11":
|
||||||
|
"73729ebd29e2895f30c1a600adac56748b1afe18e9398e86ac4a293941fee3f7",
|
||||||
|
"i686-pc-windows-msvc-0.9.11":
|
||||||
|
"d7a6e1d8f3d6bc2eea36311fe1b30ee44e8aac5de54189bbf17849a212a388a0",
|
||||||
|
"i686-unknown-linux-gnu-0.9.11":
|
||||||
|
"19189d007a820ed37b08a54cc46efd2b697ed266e71bac6f38abf44e319a5067",
|
||||||
|
"i686-unknown-linux-musl-0.9.11":
|
||||||
|
"d517ec84358c3ed55757bf8e28eba40072b7912626d96ef0df29fd115f875ad1",
|
||||||
|
"powerpc64-unknown-linux-gnu-0.9.11":
|
||||||
|
"a30437a5ccbbcedcdd2e70e81404cfcf7a6b4f34d1a440c61e7df96702165869",
|
||||||
|
"powerpc64le-unknown-linux-gnu-0.9.11":
|
||||||
|
"6340562f7aff862c6b15c55520ca81823fe446e595f96f4732ddf37544977a5d",
|
||||||
|
"riscv64gc-unknown-linux-gnu-0.9.11":
|
||||||
|
"89ac4d89928dded2e1f300f5f6b184b9f370493c2e506ca272d77e39c6a1b68f",
|
||||||
|
"s390x-unknown-linux-gnu-0.9.11":
|
||||||
|
"665208d604a63d8e934bd4f748e689283f507b20a083f6c027146d92eb3048c0",
|
||||||
|
"x86_64-apple-darwin-0.9.11":
|
||||||
|
"14236594b4edbd90929d845766a41a1d4e51d530c9ebbedfb3d93688661f142c",
|
||||||
|
"x86_64-pc-windows-msvc-0.9.11":
|
||||||
|
"45a3ff2a68c246ed9fd2d9df032496c1beebe480357f356ac25d2cb144884c30",
|
||||||
|
"x86_64-unknown-linux-gnu-0.9.11":
|
||||||
|
"817c0722b437b4b45b9a7e0231616a09db76bab1b8d178ba7a9680c690db19f0",
|
||||||
|
"x86_64-unknown-linux-musl-0.9.11":
|
||||||
|
"5cc06fe71374a8883aeb2c83a141a4b5fac8584ee894ba31c5792254508b4e9a",
|
||||||
"aarch64-apple-darwin-0.9.10":
|
"aarch64-apple-darwin-0.9.10":
|
||||||
"af171d5a4eb1c502819de32740aa811ff71851b1f5ec2d8bd0dda302ed9554c2",
|
"af171d5a4eb1c502819de32740aa811ff71851b1f5ec2d8bd0dda302ed9554c2",
|
||||||
"aarch64-pc-windows-msvc-0.9.10":
|
"aarch64-pc-windows-msvc-0.9.10":
|
||||||
|
|||||||
@@ -2,21 +2,18 @@ import { promises as fs } from "node:fs";
|
|||||||
import * as path from "node:path";
|
import * as path from "node:path";
|
||||||
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 type { Endpoints } from "@octokit/types";
|
|
||||||
import * as pep440 from "@renovatebot/pep440";
|
import * as pep440 from "@renovatebot/pep440";
|
||||||
import * as semver from "semver";
|
import * as semver from "semver";
|
||||||
import { OWNER, REPO, TOOL_CACHE_NAME } from "../utils/constants";
|
import { OWNER, REPO, TOOL_CACHE_NAME } from "../utils/constants";
|
||||||
import { Octokit } from "../utils/octokit";
|
|
||||||
import type { Architecture, Platform } from "../utils/platforms";
|
import type { Architecture, Platform } from "../utils/platforms";
|
||||||
import { validateChecksum } from "./checksum/checksum";
|
import { validateChecksum } from "./checksum/checksum";
|
||||||
import {
|
import {
|
||||||
|
getAvailableVersionsFromManifest,
|
||||||
getDownloadUrl,
|
getDownloadUrl,
|
||||||
getLatestKnownVersion as getLatestVersionInManifest,
|
getLatestKnownVersion as getLatestVersionInManifest,
|
||||||
|
REMOTE_MANIFEST_URL,
|
||||||
} from "./version-manifest";
|
} from "./version-manifest";
|
||||||
|
|
||||||
type Release =
|
|
||||||
Endpoints["GET /repos/{owner}/{repo}/releases"]["response"]["data"][number];
|
|
||||||
|
|
||||||
export function tryGetFromToolCache(
|
export function tryGetFromToolCache(
|
||||||
arch: Architecture,
|
arch: Architecture,
|
||||||
version: string,
|
version: string,
|
||||||
@@ -61,17 +58,20 @@ export async function downloadVersionFromManifest(
|
|||||||
checkSum: string | undefined,
|
checkSum: string | undefined,
|
||||||
githubToken: string,
|
githubToken: string,
|
||||||
): Promise<{ version: string; cachedToolDir: string }> {
|
): Promise<{ version: string; cachedToolDir: string }> {
|
||||||
const downloadUrl = await getDownloadUrl(
|
// If no user-provided manifest, try remote manifest first (will use cache if already fetched)
|
||||||
manifestUrl,
|
// then fall back to bundled manifest
|
||||||
version,
|
const manifestSources =
|
||||||
arch,
|
manifestUrl !== undefined
|
||||||
platform,
|
? [manifestUrl]
|
||||||
);
|
: [REMOTE_MANIFEST_URL, undefined];
|
||||||
if (!downloadUrl) {
|
|
||||||
core.info(
|
for (const source of manifestSources) {
|
||||||
`manifest-file does not contain version ${version}, arch ${arch}, platform ${platform}. Falling back to GitHub releases.`,
|
try {
|
||||||
);
|
const downloadUrl = await getDownloadUrl(source, version, arch, platform);
|
||||||
return await downloadVersionFromGithub(
|
if (downloadUrl) {
|
||||||
|
return await downloadVersion(
|
||||||
|
downloadUrl,
|
||||||
|
`uv-${arch}-${platform}`,
|
||||||
platform,
|
platform,
|
||||||
arch,
|
arch,
|
||||||
version,
|
version,
|
||||||
@@ -79,9 +79,15 @@ export async function downloadVersionFromManifest(
|
|||||||
githubToken,
|
githubToken,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return await downloadVersion(
|
} catch (err) {
|
||||||
downloadUrl,
|
core.debug(`Failed to get download URL from manifest ${source}: ${err}`);
|
||||||
`uv-${arch}-${platform}`,
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
core.info(
|
||||||
|
`Manifest does not contain version ${version}, arch ${arch}, platform ${platform}. Falling back to GitHub releases.`,
|
||||||
|
);
|
||||||
|
return await downloadVersionFromGithub(
|
||||||
platform,
|
platform,
|
||||||
arch,
|
arch,
|
||||||
version,
|
version,
|
||||||
@@ -143,7 +149,6 @@ function getExtension(platform: Platform): string {
|
|||||||
export async function resolveVersion(
|
export async function resolveVersion(
|
||||||
versionInput: string,
|
versionInput: string,
|
||||||
manifestFile: string | undefined,
|
manifestFile: string | undefined,
|
||||||
githubToken: string,
|
|
||||||
resolutionStrategy: "highest" | "lowest" = "highest",
|
resolutionStrategy: "highest" | "lowest" = "highest",
|
||||||
): Promise<string> {
|
): Promise<string> {
|
||||||
core.debug(`Resolving version: ${versionInput}`);
|
core.debug(`Resolving version: ${versionInput}`);
|
||||||
@@ -163,7 +168,7 @@ export async function resolveVersion(
|
|||||||
} else {
|
} else {
|
||||||
version =
|
version =
|
||||||
versionInput === "latest" || resolveVersionSpecifierToLatest
|
versionInput === "latest" || resolveVersionSpecifierToLatest
|
||||||
? await getLatestVersion(githubToken)
|
? await getLatestVersion()
|
||||||
: versionInput;
|
: versionInput;
|
||||||
}
|
}
|
||||||
if (tc.isExplicitVersion(version)) {
|
if (tc.isExplicitVersion(version)) {
|
||||||
@@ -175,7 +180,7 @@ export async function resolveVersion(
|
|||||||
}
|
}
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
const availableVersions = await getAvailableVersions(githubToken);
|
const availableVersions = await getAvailableVersions();
|
||||||
core.debug(`Available versions: ${availableVersions}`);
|
core.debug(`Available versions: ${availableVersions}`);
|
||||||
const resolvedVersion =
|
const resolvedVersion =
|
||||||
resolutionStrategy === "lowest"
|
resolutionStrategy === "lowest"
|
||||||
@@ -187,79 +192,37 @@ export async function resolveVersion(
|
|||||||
return resolvedVersion;
|
return resolvedVersion;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getAvailableVersions(githubToken: string): Promise<string[]> {
|
async function getAvailableVersions(): Promise<string[]> {
|
||||||
core.info("Getting available versions from GitHub API...");
|
// 1. Try remote manifest first (no rate limits, always current)
|
||||||
try {
|
try {
|
||||||
const octokit = new Octokit({
|
core.info("Getting available versions from remote manifest...");
|
||||||
auth: githubToken,
|
const versions =
|
||||||
});
|
await getAvailableVersionsFromManifest(REMOTE_MANIFEST_URL);
|
||||||
return await getReleaseTagNames(octokit);
|
core.debug(`Found ${versions.length} versions from remote manifest`);
|
||||||
|
return versions;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if ((err as Error).message.includes("Bad credentials")) {
|
core.debug(`Remote manifest lookup failed: ${err}`);
|
||||||
core.info(
|
|
||||||
"No (valid) GitHub token provided. Falling back to anonymous. Requests might be rate limited.",
|
|
||||||
);
|
|
||||||
const octokit = new Octokit();
|
|
||||||
return await getReleaseTagNames(octokit);
|
|
||||||
}
|
|
||||||
throw err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 2. Fall back to bundled manifest (no network, may be stale)
|
||||||
|
core.info("Getting available versions from bundled manifest...");
|
||||||
|
return await getAvailableVersionsFromManifest(undefined);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getReleaseTagNames(octokit: Octokit): Promise<string[]> {
|
async function getLatestVersion() {
|
||||||
const response: Release[] = await octokit.paginate(
|
// 1. Try remote manifest first (no rate limits, always current)
|
||||||
octokit.rest.repos.listReleases,
|
|
||||||
{
|
|
||||||
owner: OWNER,
|
|
||||||
repo: REPO,
|
|
||||||
},
|
|
||||||
);
|
|
||||||
const releaseTagNames = response.map((release) => release.tag_name);
|
|
||||||
if (releaseTagNames.length === 0) {
|
|
||||||
throw Error(
|
|
||||||
"Github API request failed while getting releases. Check the GitHub status page for outages. Try again later.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return releaseTagNames;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getLatestVersion(githubToken: string) {
|
|
||||||
core.info("Getting latest version from GitHub API...");
|
|
||||||
const octokit = new Octokit({
|
|
||||||
auth: githubToken,
|
|
||||||
});
|
|
||||||
|
|
||||||
let latestRelease: { tag_name: string } | undefined;
|
|
||||||
try {
|
try {
|
||||||
latestRelease = await getLatestRelease(octokit);
|
core.info("Getting latest version from remote manifest...");
|
||||||
|
const version = await getLatestVersionInManifest(REMOTE_MANIFEST_URL);
|
||||||
|
core.debug(`Latest version from remote manifest: ${version}`);
|
||||||
|
return version;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if ((err as Error).message.includes("Bad credentials")) {
|
core.debug(`Remote manifest lookup failed: ${err}`);
|
||||||
core.info(
|
|
||||||
"No (valid) GitHub token provided. Falling back to anonymous. Requests might be rate limited.",
|
|
||||||
);
|
|
||||||
const octokit = new Octokit();
|
|
||||||
latestRelease = await getLatestRelease(octokit);
|
|
||||||
} else {
|
|
||||||
core.error(
|
|
||||||
"Github API request failed while getting latest release. Check the GitHub status page for outages. Try again later.",
|
|
||||||
);
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!latestRelease) {
|
// 2. Fall back to bundled manifest (no network, may be stale)
|
||||||
throw new Error("Could not determine latest release.");
|
core.info("Getting latest version from bundled manifest...");
|
||||||
}
|
return await getLatestVersionInManifest(undefined);
|
||||||
core.debug(`Latest version: ${latestRelease.tag_name}`);
|
|
||||||
return latestRelease.tag_name;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getLatestRelease(octokit: Octokit) {
|
|
||||||
const { data: latestRelease } = await octokit.rest.repos.getLatestRelease({
|
|
||||||
owner: OWNER,
|
|
||||||
repo: REPO,
|
|
||||||
});
|
|
||||||
return latestRelease;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function maxSatisfying(
|
function maxSatisfying(
|
||||||
|
|||||||
@@ -5,6 +5,11 @@ import * as semver from "semver";
|
|||||||
import { fetch } from "../utils/fetch";
|
import { fetch } from "../utils/fetch";
|
||||||
|
|
||||||
const localManifestFile = join(__dirname, "..", "..", "version-manifest.json");
|
const localManifestFile = join(__dirname, "..", "..", "version-manifest.json");
|
||||||
|
export const REMOTE_MANIFEST_URL =
|
||||||
|
"https://raw.githubusercontent.com/astral-sh/setup-uv/main/version-manifest.json";
|
||||||
|
|
||||||
|
// Cache for manifest entries to avoid re-fetching
|
||||||
|
const manifestCache = new Map<string, ManifestEntry[]>();
|
||||||
|
|
||||||
interface ManifestEntry {
|
interface ManifestEntry {
|
||||||
version: string;
|
version: string;
|
||||||
@@ -39,9 +44,25 @@ export async function getDownloadUrl(
|
|||||||
return entry ? entry.downloadUrl : undefined;
|
return entry ? entry.downloadUrl : undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function getAvailableVersionsFromManifest(
|
||||||
|
manifestUrl: string | undefined,
|
||||||
|
): Promise<string[]> {
|
||||||
|
const manifestEntries = await getManifestEntries(manifestUrl);
|
||||||
|
return [...new Set(manifestEntries.map((entry) => entry.version))];
|
||||||
|
}
|
||||||
|
|
||||||
async function getManifestEntries(
|
async function getManifestEntries(
|
||||||
manifestUrl: string | undefined,
|
manifestUrl: string | undefined,
|
||||||
): Promise<ManifestEntry[]> {
|
): Promise<ManifestEntry[]> {
|
||||||
|
const cacheKey = manifestUrl ?? "local";
|
||||||
|
|
||||||
|
// Return cached entries if available
|
||||||
|
const cached = manifestCache.get(cacheKey);
|
||||||
|
if (cached !== undefined) {
|
||||||
|
core.debug(`Using cached manifest entries for: ${cacheKey}`);
|
||||||
|
return cached;
|
||||||
|
}
|
||||||
|
|
||||||
let data: string;
|
let data: string;
|
||||||
if (manifestUrl !== undefined) {
|
if (manifestUrl !== undefined) {
|
||||||
core.info(`Fetching manifest-file from: ${manifestUrl}`);
|
core.info(`Fetching manifest-file from: ${manifestUrl}`);
|
||||||
@@ -58,7 +79,9 @@ async function getManifestEntries(
|
|||||||
data = fileContent.toString();
|
data = fileContent.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
return JSON.parse(data);
|
const entries: ManifestEntry[] = JSON.parse(data);
|
||||||
|
manifestCache.set(cacheKey, entries);
|
||||||
|
return entries;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function updateVersionManifest(
|
export async function updateVersionManifest(
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import * as pep440 from "@renovatebot/pep440";
|
|||||||
import {
|
import {
|
||||||
STATE_CACHE_KEY,
|
STATE_CACHE_KEY,
|
||||||
STATE_CACHE_MATCHED_KEY,
|
STATE_CACHE_MATCHED_KEY,
|
||||||
|
STATE_PYTHON_CACHE_MATCHED_KEY,
|
||||||
} from "./cache/restore-cache";
|
} from "./cache/restore-cache";
|
||||||
import { STATE_UV_PATH, STATE_UV_VERSION } from "./utils/constants";
|
import { STATE_UV_PATH, STATE_UV_VERSION } from "./utils/constants";
|
||||||
import {
|
import {
|
||||||
@@ -52,56 +53,31 @@ async function saveCache(): Promise<void> {
|
|||||||
}
|
}
|
||||||
if (matchedKey === cacheKey) {
|
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;
|
} else {
|
||||||
}
|
|
||||||
|
|
||||||
if (shouldPruneCache) {
|
if (shouldPruneCache) {
|
||||||
await pruneCache();
|
await pruneCache();
|
||||||
}
|
}
|
||||||
|
|
||||||
let actualCachePath = cacheLocalPath;
|
const actualCachePath = getUvCachePath();
|
||||||
if (process.env.UV_CACHE_DIR && process.env.UV_CACHE_DIR !== cacheLocalPath) {
|
await saveCacheToKey(
|
||||||
core.warning(
|
cacheKey,
|
||||||
`The environment variable UV_CACHE_DIR has been changed to "${process.env.UV_CACHE_DIR}", by an action or step running after astral-sh/setup-uv. This can lead to unexpected behavior. If you expected this to happen set the cache-local-path input to "${process.env.UV_CACHE_DIR}" instead of "${cacheLocalPath}".`,
|
actualCachePath,
|
||||||
);
|
STATE_CACHE_MATCHED_KEY,
|
||||||
actualCachePath = process.env.UV_CACHE_DIR;
|
"uv cache",
|
||||||
}
|
|
||||||
|
|
||||||
core.info(`Saving cache path: ${actualCachePath}`);
|
|
||||||
if (!fs.existsSync(actualCachePath) && !ignoreNothingToCache) {
|
|
||||||
throw new Error(
|
|
||||||
`Cache path ${actualCachePath} does not exist on disk. This likely indicates that there are no dependencies to cache. Consider disabling the cache input if it is not needed.`,
|
`Cache path ${actualCachePath} does not exist on disk. This likely indicates that there are no dependencies to cache. Consider disabling the cache input if it is not needed.`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const cachePaths = [actualCachePath];
|
|
||||||
if (cachePython) {
|
if (cachePython) {
|
||||||
core.info(`Including Python cache path: ${pythonDir}`);
|
const pythonCacheKey = `${cacheKey}-python`;
|
||||||
if (!fs.existsSync(pythonDir) && !ignoreNothingToCache) {
|
await saveCacheToKey(
|
||||||
throw new Error(
|
pythonCacheKey,
|
||||||
`Python cache path ${pythonDir} does not exist on disk. This likely indicates that there are no dependencies to cache. Consider disabling the cache input if it is not needed.`,
|
pythonDir,
|
||||||
|
STATE_PYTHON_CACHE_MATCHED_KEY,
|
||||||
|
"Python cache",
|
||||||
|
`Python cache path ${pythonDir} does not exist on disk. This likely indicates that there are no Python installations to cache. Consider disabling the cache input if it is not needed.`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
cachePaths.push(pythonDir);
|
|
||||||
}
|
|
||||||
|
|
||||||
core.info(`Final cache paths: ${cachePaths.join(", ")}`);
|
|
||||||
try {
|
|
||||||
await cache.saveCache(cachePaths, cacheKey);
|
|
||||||
core.info(`cache saved with the key: ${cacheKey}`);
|
|
||||||
} catch (e) {
|
|
||||||
if (
|
|
||||||
e instanceof Error &&
|
|
||||||
e.message ===
|
|
||||||
"Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved."
|
|
||||||
) {
|
|
||||||
core.info(
|
|
||||||
"No cacheable paths were found. Ignoring because ignore-nothing-to-save is enabled.",
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function pruneCache(): Promise<void> {
|
async function pruneCache(): Promise<void> {
|
||||||
@@ -120,4 +96,61 @@ async function pruneCache(): Promise<void> {
|
|||||||
await exec.exec(uvPath, execArgs, options);
|
await exec.exec(uvPath, execArgs, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getUvCachePath(): string {
|
||||||
|
if (cacheLocalPath === undefined) {
|
||||||
|
throw new Error(
|
||||||
|
"cache-local-path is not set. Cannot save cache without a valid cache path.",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (
|
||||||
|
process.env.UV_CACHE_DIR &&
|
||||||
|
process.env.UV_CACHE_DIR !== cacheLocalPath.path
|
||||||
|
) {
|
||||||
|
core.warning(
|
||||||
|
`The environment variable UV_CACHE_DIR has been changed to "${process.env.UV_CACHE_DIR}", by an action or step running after astral-sh/setup-uv. This can lead to unexpected behavior. If you expected this to happen set the cache-local-path input to "${process.env.UV_CACHE_DIR}" instead of "${cacheLocalPath.path}".`,
|
||||||
|
);
|
||||||
|
return process.env.UV_CACHE_DIR;
|
||||||
|
}
|
||||||
|
return cacheLocalPath.path;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function saveCacheToKey(
|
||||||
|
cacheKey: string,
|
||||||
|
cachePath: string,
|
||||||
|
stateKey: string,
|
||||||
|
cacheName: string,
|
||||||
|
pathNotExistErrorMessage: string,
|
||||||
|
): Promise<void> {
|
||||||
|
const matchedKey = core.getState(stateKey);
|
||||||
|
|
||||||
|
if (matchedKey === cacheKey) {
|
||||||
|
core.info(
|
||||||
|
`${cacheName} hit occurred on key ${cacheKey}, not saving cache.`,
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
core.info(`Including ${cacheName} path: ${cachePath}`);
|
||||||
|
if (!fs.existsSync(cachePath) && !ignoreNothingToCache) {
|
||||||
|
throw new Error(pathNotExistErrorMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
await cache.saveCache([cachePath], cacheKey);
|
||||||
|
core.info(`${cacheName} saved with key: ${cacheKey}`);
|
||||||
|
} catch (e) {
|
||||||
|
if (
|
||||||
|
e instanceof Error &&
|
||||||
|
e.message ===
|
||||||
|
"Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved."
|
||||||
|
) {
|
||||||
|
core.info(
|
||||||
|
`No cacheable ${cacheName} paths were found. Ignoring because ignore-nothing-to-save is enabled.`,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
run();
|
run();
|
||||||
|
|||||||
@@ -8,11 +8,11 @@ import {
|
|||||||
resolveVersion,
|
resolveVersion,
|
||||||
tryGetFromToolCache,
|
tryGetFromToolCache,
|
||||||
} from "./download/download-version";
|
} from "./download/download-version";
|
||||||
import { getConfigValueFromTomlFile } from "./utils/config-file";
|
|
||||||
import { STATE_UV_PATH, STATE_UV_VERSION } from "./utils/constants";
|
import { STATE_UV_PATH, STATE_UV_VERSION } from "./utils/constants";
|
||||||
import {
|
import {
|
||||||
activateEnvironment as activateEnvironmentInput,
|
activateEnvironment as activateEnvironmentInput,
|
||||||
addProblemMatchers,
|
addProblemMatchers,
|
||||||
|
CacheLocalSource,
|
||||||
cacheLocalPath,
|
cacheLocalPath,
|
||||||
checkSum,
|
checkSum,
|
||||||
enableCache,
|
enableCache,
|
||||||
@@ -36,6 +36,37 @@ import {
|
|||||||
} from "./utils/platforms";
|
} from "./utils/platforms";
|
||||||
import { getUvVersionFromFile } from "./version/resolve";
|
import { getUvVersionFromFile } from "./version/resolve";
|
||||||
|
|
||||||
|
async function getPythonVersion(): Promise<string> {
|
||||||
|
if (pythonVersion !== "") {
|
||||||
|
return pythonVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
let output = "";
|
||||||
|
const options: exec.ExecOptions = {
|
||||||
|
listeners: {
|
||||||
|
stdout: (data: Buffer) => {
|
||||||
|
output += data.toString();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
silent: !core.isDebug(),
|
||||||
|
};
|
||||||
|
|
||||||
|
try {
|
||||||
|
const execArgs = ["python", "find", "--directory", workingDirectory];
|
||||||
|
await exec.exec("uv", execArgs, options);
|
||||||
|
const pythonPath = output.trim();
|
||||||
|
|
||||||
|
output = "";
|
||||||
|
await exec.exec(pythonPath, ["--version"], options);
|
||||||
|
// output is like "Python 3.8.10"
|
||||||
|
return output.split(" ")[1].trim();
|
||||||
|
} catch (error) {
|
||||||
|
const err = error as Error;
|
||||||
|
core.debug(`Failed to get python version from uv. Error: ${err.message}`);
|
||||||
|
return "unknown";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async function run(): Promise<void> {
|
async function run(): Promise<void> {
|
||||||
detectEmptyWorkdir();
|
detectEmptyWorkdir();
|
||||||
const platform = await getPlatform();
|
const platform = await getPlatform();
|
||||||
@@ -63,8 +94,11 @@ async function run(): Promise<void> {
|
|||||||
core.saveState(STATE_UV_VERSION, setupResult.version);
|
core.saveState(STATE_UV_VERSION, setupResult.version);
|
||||||
core.info(`Successfully installed uv version ${setupResult.version}`);
|
core.info(`Successfully installed uv version ${setupResult.version}`);
|
||||||
|
|
||||||
|
const pythonVersion = await getPythonVersion();
|
||||||
|
core.setOutput("python-version", pythonVersion);
|
||||||
|
|
||||||
if (enableCache) {
|
if (enableCache) {
|
||||||
await restoreCache();
|
await restoreCache(pythonVersion);
|
||||||
}
|
}
|
||||||
// https://github.com/nodejs/node/issues/56645#issuecomment-3077594952
|
// https://github.com/nodejs/node/issues/56645#issuecomment-3077594952
|
||||||
await new Promise((resolve) => setTimeout(resolve, 50));
|
await new Promise((resolve) => setTimeout(resolve, 50));
|
||||||
@@ -123,12 +157,7 @@ async function determineVersion(
|
|||||||
manifestFile: string | undefined,
|
manifestFile: string | undefined,
|
||||||
): Promise<string> {
|
): Promise<string> {
|
||||||
if (versionInput !== "") {
|
if (versionInput !== "") {
|
||||||
return await resolveVersion(
|
return await resolveVersion(versionInput, manifestFile, resolutionStrategy);
|
||||||
versionInput,
|
|
||||||
manifestFile,
|
|
||||||
githubToken,
|
|
||||||
resolutionStrategy,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
if (versionFileInput !== "") {
|
if (versionFileInput !== "") {
|
||||||
const versionFromFile = getUvVersionFromFile(versionFileInput);
|
const versionFromFile = getUvVersionFromFile(versionFileInput);
|
||||||
@@ -140,7 +169,6 @@ async function determineVersion(
|
|||||||
return await resolveVersion(
|
return await resolveVersion(
|
||||||
versionFromFile,
|
versionFromFile,
|
||||||
manifestFile,
|
manifestFile,
|
||||||
githubToken,
|
|
||||||
resolutionStrategy,
|
resolutionStrategy,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -158,7 +186,6 @@ async function determineVersion(
|
|||||||
return await resolveVersion(
|
return await resolveVersion(
|
||||||
versionFromUvToml || versionFromPyproject || "latest",
|
versionFromUvToml || versionFromPyproject || "latest",
|
||||||
manifestFile,
|
manifestFile,
|
||||||
githubToken,
|
|
||||||
resolutionStrategy,
|
resolutionStrategy,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -252,16 +279,15 @@ async function activateEnvironment(): Promise<void> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function setCacheDir(): void {
|
function setCacheDir(): void {
|
||||||
if (enableCache) {
|
if (cacheLocalPath !== undefined) {
|
||||||
const cacheDirFromConfig = getConfigValueFromTomlFile("", "cache-dir");
|
if (cacheLocalPath.source === CacheLocalSource.Config) {
|
||||||
if (cacheDirFromConfig !== undefined) {
|
|
||||||
core.info(
|
core.info(
|
||||||
"Using cache-dir from uv config file, not modifying UV_CACHE_DIR",
|
"Using cache-dir from uv config file, not modifying UV_CACHE_DIR",
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
core.exportVariable("UV_CACHE_DIR", cacheLocalPath);
|
core.exportVariable("UV_CACHE_DIR", cacheLocalPath.path);
|
||||||
core.info(`Set UV_CACHE_DIR to ${cacheLocalPath}`);
|
core.info(`Set UV_CACHE_DIR to ${cacheLocalPath.path}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,13 @@ import path from "node:path";
|
|||||||
import * as core from "@actions/core";
|
import * as core from "@actions/core";
|
||||||
import { getConfigValueFromTomlFile } from "./config-file";
|
import { getConfigValueFromTomlFile } from "./config-file";
|
||||||
|
|
||||||
|
export enum CacheLocalSource {
|
||||||
|
Input,
|
||||||
|
Config,
|
||||||
|
Env,
|
||||||
|
Default,
|
||||||
|
}
|
||||||
|
|
||||||
export const workingDirectory = core.getInput("working-directory");
|
export const workingDirectory = core.getInput("working-directory");
|
||||||
export const version = core.getInput("version");
|
export const version = core.getInput("version");
|
||||||
export const versionFile = getVersionFile();
|
export const versionFile = getVersionFile();
|
||||||
@@ -80,32 +87,51 @@ function getToolDir(): string | undefined {
|
|||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCacheLocalPath(): string {
|
function getCacheLocalPath():
|
||||||
|
| {
|
||||||
|
path: string;
|
||||||
|
source: CacheLocalSource;
|
||||||
|
}
|
||||||
|
| undefined {
|
||||||
const cacheLocalPathInput = core.getInput("cache-local-path");
|
const cacheLocalPathInput = core.getInput("cache-local-path");
|
||||||
if (cacheLocalPathInput !== "") {
|
if (cacheLocalPathInput !== "") {
|
||||||
const tildeExpanded = expandTilde(cacheLocalPathInput);
|
const tildeExpanded = expandTilde(cacheLocalPathInput);
|
||||||
return resolveRelativePath(tildeExpanded);
|
return {
|
||||||
|
path: resolveRelativePath(tildeExpanded),
|
||||||
|
source: CacheLocalSource.Input,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
const cacheDirFromConfig = getCacheDirFromConfig();
|
const cacheDirFromConfig = getCacheDirFromConfig();
|
||||||
if (cacheDirFromConfig !== undefined) {
|
if (cacheDirFromConfig !== undefined) {
|
||||||
return cacheDirFromConfig;
|
return { path: cacheDirFromConfig, source: CacheLocalSource.Config };
|
||||||
}
|
}
|
||||||
if (process.env.UV_CACHE_DIR !== undefined) {
|
if (process.env.UV_CACHE_DIR !== undefined) {
|
||||||
core.info(`UV_CACHE_DIR is already set to ${process.env.UV_CACHE_DIR}`);
|
core.info(`UV_CACHE_DIR is already set to ${process.env.UV_CACHE_DIR}`);
|
||||||
return process.env.UV_CACHE_DIR;
|
return { path: process.env.UV_CACHE_DIR, source: CacheLocalSource.Env };
|
||||||
}
|
}
|
||||||
|
if (getEnableCache()) {
|
||||||
if (process.env.RUNNER_ENVIRONMENT === "github-hosted") {
|
if (process.env.RUNNER_ENVIRONMENT === "github-hosted") {
|
||||||
if (process.env.RUNNER_TEMP !== undefined) {
|
if (process.env.RUNNER_TEMP !== undefined) {
|
||||||
return `${process.env.RUNNER_TEMP}${path.sep}setup-uv-cache`;
|
return {
|
||||||
|
path: `${process.env.RUNNER_TEMP}${path.sep}setup-uv-cache`,
|
||||||
|
source: CacheLocalSource.Default,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
throw Error(
|
throw Error(
|
||||||
"Could not determine UV_CACHE_DIR. Please make sure RUNNER_TEMP is set or provide the cache-local-path input",
|
"Could not determine UV_CACHE_DIR. Please make sure RUNNER_TEMP is set or provide the cache-local-path input",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (process.platform === "win32") {
|
if (process.platform === "win32") {
|
||||||
return `${process.env.APPDATA}${path.sep}uv${path.sep}cache`;
|
return {
|
||||||
|
path: `${process.env.APPDATA}${path.sep}uv${path.sep}cache`,
|
||||||
|
source: CacheLocalSource.Default,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
path: `${process.env.HOME}${path.sep}.cache${path.sep}uv`,
|
||||||
|
source: CacheLocalSource.Default,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
return `${process.env.HOME}${path.sep}.cache${path.sep}uv`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCacheDirFromConfig(): string | undefined {
|
function getCacheDirFromConfig(): string | undefined {
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import fs from "node:fs";
|
||||||
|
import os from "node:os";
|
||||||
import * as core from "@actions/core";
|
import * as core from "@actions/core";
|
||||||
import * as exec from "@actions/exec";
|
import * as exec from "@actions/exec";
|
||||||
export type Platform =
|
export type Platform =
|
||||||
@@ -74,3 +76,71 @@ async function isMuslOs(): Promise<boolean> {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns OS name and version for cache key differentiation.
|
||||||
|
* Examples: "ubuntu-22.04", "macos-14", "windows-2022"
|
||||||
|
* Throws if OS detection fails.
|
||||||
|
*/
|
||||||
|
export function getOSNameVersion(): string {
|
||||||
|
const platform = process.platform;
|
||||||
|
|
||||||
|
if (platform === "linux") {
|
||||||
|
return getLinuxOSNameVersion();
|
||||||
|
}
|
||||||
|
if (platform === "darwin") {
|
||||||
|
return getMacOSNameVersion();
|
||||||
|
}
|
||||||
|
if (platform === "win32") {
|
||||||
|
return getWindowsNameVersion();
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Error(`Unsupported platform: ${platform}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getLinuxOSNameVersion(): string {
|
||||||
|
const files = ["/etc/os-release", "/usr/lib/os-release"];
|
||||||
|
|
||||||
|
for (const file of files) {
|
||||||
|
try {
|
||||||
|
const content = fs.readFileSync(file, "utf8");
|
||||||
|
const id = parseOsReleaseValue(content, "ID");
|
||||||
|
const versionId = parseOsReleaseValue(content, "VERSION_ID");
|
||||||
|
|
||||||
|
if (id && versionId) {
|
||||||
|
return `${id}-${versionId}`;
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
// Try next file
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Error(
|
||||||
|
"Failed to determine Linux distribution. " +
|
||||||
|
"Could not read /etc/os-release or /usr/lib/os-release",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseOsReleaseValue(content: string, key: string): string | undefined {
|
||||||
|
const regex = new RegExp(`^${key}=["']?([^"'\\n]*)["']?$`, "m");
|
||||||
|
const match = content.match(regex);
|
||||||
|
return match?.[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
function getMacOSNameVersion(): string {
|
||||||
|
const darwinVersion = Number.parseInt(os.release().split(".")[0], 10);
|
||||||
|
if (Number.isNaN(darwinVersion)) {
|
||||||
|
throw new Error(`Failed to parse macOS version from: ${os.release()}`);
|
||||||
|
}
|
||||||
|
const macosVersion = darwinVersion - 9;
|
||||||
|
return `macos-${macosVersion}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getWindowsNameVersion(): string {
|
||||||
|
const version = os.version();
|
||||||
|
const match = version.match(/Windows(?: Server)? (\d+)/);
|
||||||
|
if (!match) {
|
||||||
|
throw new Error(`Failed to parse Windows version from: ${version}`);
|
||||||
|
}
|
||||||
|
return `windows-${match[1]}`;
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,4 +1,1894 @@
|
|||||||
[
|
[
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.26/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.25/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.24/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.23/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.23"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.22/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.21/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.21"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.20/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.20"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.18/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.18"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.17/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.16/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.15/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.14/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.14"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.13/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.12/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-aarch64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "aarch64",
|
||||||
|
"artifactName": "uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "arm",
|
||||||
|
"artifactName": "uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-arm-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-armv7-unknown-linux-gnueabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnueabihf",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "armv7",
|
||||||
|
"artifactName": "uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-armv7-unknown-linux-musleabihf.tar.gz",
|
||||||
|
"platform": "unknown-linux-musleabihf",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-i686-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-i686-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "i686",
|
||||||
|
"artifactName": "uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-i686-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64",
|
||||||
|
"artifactName": "uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-powerpc64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "powerpc64le",
|
||||||
|
"artifactName": "uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-powerpc64le-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "riscv64gc",
|
||||||
|
"artifactName": "uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-riscv64gc-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "s390x",
|
||||||
|
"artifactName": "uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-s390x-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-x86_64-apple-darwin.tar.gz",
|
||||||
|
"platform": "apple-darwin",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-x86_64-pc-windows-msvc.zip",
|
||||||
|
"platform": "pc-windows-msvc",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
|
"platform": "unknown-linux-gnu",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x86_64",
|
||||||
|
"artifactName": "uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"downloadUrl": "https://github.com/astral-sh/uv/releases/download/0.9.11/uv-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"platform": "unknown-linux-musl",
|
||||||
|
"version": "0.9.11"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"arch": "aarch64",
|
"arch": "aarch64",
|
||||||
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
"artifactName": "uv-aarch64-apple-darwin.tar.gz",
|
||||||
|
|||||||
Reference in New Issue
Block a user