📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-08-24 09:30:03 +08:00
parent 14e7209e78
commit 5d88510274
153 changed files with 3428 additions and 1203 deletions
+10
View File
@@ -24,6 +24,9 @@ inputs:
model:
description: "Claude model to use"
default: "claude-sonnet-4-6"
api-base-url:
description: "Anthropic-compatible /v1/messages endpoint to call instead of api.anthropic.com (empty = Anthropic)"
default: ""
outputs:
score:
@@ -71,10 +74,17 @@ runs:
shell: bash
env:
ANTHROPIC_API_KEY: ${{ inputs.anthropic-api-key }}
API_BASE_URL: ${{ inputs.api-base-url }}
SARIF_FILE: ${{ inputs.sarif-file }}
MODE: ${{ inputs.mode }}
MODEL: ${{ inputs.model }}
run: |
# Exported only when the input is set: naming ANTHROPIC_BASE_URL in the
# env block above would blank out one inherited from the job env. The
# SDK reads the variable itself, so nothing downstream needs a flag.
if [ -n "$API_BASE_URL" ]; then
export ANTHROPIC_BASE_URL="$API_BASE_URL"
fi
sarif_arg=()
if [ -n "$SARIF_FILE" ]; then
sarif_arg=(--sarif-out "$SARIF_FILE")
+40
View File
@@ -0,0 +1,40 @@
name: Star history
# GitHub restricted the stargazers API to a repo's own admins and collaborators,
# so no third-party service can chart this repo any more. GITHUB_TOKEN can read
# it, so we regenerate the committed SVG here instead.
on:
schedule:
- cron: "17 3 * * 1" # Mondays, 03:17 UTC
workflow_dispatch:
concurrency:
group: star-history
cancel-in-progress: true
jobs:
refresh:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: write
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Set up Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 22
- name: Regenerate the chart
run: node scripts/gen-star-history.mjs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Commit when the chart moved
run: |
if git diff --quiet -- assets/star-history.svg assets/star-history.json; then
echo "No change."
exit 0
fi
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git commit -m "chore: refresh the star history chart" -- assets/star-history.svg assets/star-history.json
git push