📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-10 16:04:20 +00:00
parent 2bb0dc8c1d
commit 92c0c3f687
594 changed files with 55224 additions and 19038 deletions
@@ -17,10 +17,12 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: "3.10"
@@ -28,11 +30,19 @@ jobs:
run: pip install -r tools/requirements.txt
- name: Setup Node
uses: actions/setup-node@v5
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
- name: Verify release identity
shell: bash
run: |
test "$GITHUB_REF_TYPE" = "tag"
expected_tag="v$(node -p "require('./package.json').version")"
test "$GITHUB_REF_NAME" = "$expected_tag"
test "$(git rev-list -n1 HEAD)" = "$(git rev-list -n1 "$GITHUB_REF_NAME")"
- name: Install dependencies
run: npm ci