diff --git a/.github/workflows/build-reusable.yml b/.github/workflows/build-reusable.yml index 6dfb43d..6ec6b98 100644 --- a/.github/workflows/build-reusable.yml +++ b/.github/workflows/build-reusable.yml @@ -16,8 +16,10 @@ jobs: steps: - uses: actions/checkout@v4 with: - ref: ${{ inputs.ref }} submodules: recursive + fetch-depth: 1 + token: ${{ secrets.GH_PAT }} + ref: ${{ inputs.ref }} - name: Install uv and Python uses: astral-sh/setup-uv@v6 @@ -91,8 +93,10 @@ jobs: steps: - uses: actions/checkout@v5 with: - ref: ${{ inputs.ref }} submodules: recursive + fetch-depth: 1 + token: ${{ secrets.GH_PAT }} + ref: ${{ inputs.ref }} - name: Install uv and Python uses: astral-sh/setup-uv@v6 diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index 8b836c8..5b31c81 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -12,6 +12,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + fetch-depth: 1 + token: ${{ secrets.GH_PAT }} - uses: lycheeverse/lychee-action@v2 with: args: --no-progress --insecure --user-agent 'curl/7.68.0' --exclude '.*api\.star-history\.com.*' --accept 200,201,202,203,204,205,206,207,208,226,300,301,302,303,304,305,306,307,308,503 README.md docs/ apps/ examples/ benchmarks/ diff --git a/.github/workflows/release-manual.yml b/.github/workflows/release-manual.yml index a02be62..1164869 100644 --- a/.github/workflows/release-manual.yml +++ b/.github/workflows/release-manual.yml @@ -19,6 +19,9 @@ jobs: steps: - uses: actions/checkout@v4 + with: + fetch-depth: 1 + token: ${{ secrets.GH_PAT }} - name: Validate version run: | @@ -73,6 +76,8 @@ jobs: steps: - uses: actions/checkout@v4 with: + fetch-depth: 1 + token: ${{ secrets.GH_PAT }} ref: 'main' - name: Download all artifacts