Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Preflight (ubuntu)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
name: Preflight (windows -- PSScriptAnalyzer)
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
Expand All @@ -82,7 +82,7 @@ jobs:
name: check-all.sh
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
# Pin Node 22.x (matches the other jobs). Without this, check-all ran on the
# runner's default Node, where node:sqlite is unavailable/partial and the
# mcp-server suite failed ~129 sqlite-backed tests.
Expand All @@ -102,7 +102,7 @@ jobs:
name: Plugin manifest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Validate plugin manifest JSON
run: node -e "JSON.parse(require('fs').readFileSync('claude/.claude-plugin/plugin.json','utf8'))"
- name: Required plugin manifest fields
Expand All @@ -119,7 +119,7 @@ jobs:
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Preflight gate (belt-and-braces)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
name: check-all.sh (release gate)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
# Node 22.x: node:sqlite is unavailable/partial on the runner default.
- uses: actions/setup-node@v6
with:
Expand All @@ -88,7 +88,7 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Node 24.x ships npm 11.x natively, which is the version that supports
# Trusted Publishing OIDC token exchange. Avoids the known in-place
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
contents: read
# 1.2.1's first run was green; gating this job from 1.2.2 onward.
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install git inside container
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/refresh-prices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Fetch and filter LiteLLM prices
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
mode: [default-path, stripped-path]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
Expand Down