chore: bump package version to 0.14.1 #83
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Copilot Setup Steps | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: [.github/workflows/copilot-setup-steps.yml] | |
| pull_request: | |
| paths: [.github/workflows/copilot-setup-steps.yml] | |
| # Note: global env vars are NOT used here — they are not reliable in all | |
| # GitHub Actions contexts (e.g. Copilot setup steps). Values are inlined | |
| # directly into each step that needs them. | |
| jobs: | |
| copilot-setup-steps: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Go + Node versions match your helper | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25.6" | |
| cache-dependency-path: go.sum | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| # Zig is used by your Linux CGO builds (kept available, but we won't build here) | |
| - uses: mlugg/setup-zig@v2 | |
| # Task CLI for your Taskfile | |
| - uses: arduino/setup-task@v2 | |
| with: | |
| version: 3.x | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| # Git HTTPS so deps resolve non-interactively | |
| - name: Force git deps to HTTPS | |
| run: | | |
| git config --global url.https://github.com/.insteadof ssh://git@github.com/ | |
| git config --global url.https://github.com/.insteadof git@github.com: | |
| # Warm caches only (no builds) | |
| - uses: nick-fields/retry@v3 | |
| name: npm ci | |
| with: | |
| command: npm ci --no-audit --no-fund | |
| retry_on: error | |
| max_attempts: 3 | |
| timeout_minutes: 5 | |
| env: | |
| GIT_ASKPASS: "echo" | |
| GIT_TERMINAL_PROMPT: "0" | |
| - name: Pre-fetch Go modules | |
| env: | |
| GOTOOLCHAIN: auto | |
| run: | | |
| go version | |
| go mod download |