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
4 changes: 2 additions & 2 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:

- name: Setup Node.js
if: steps.bump.outputs.skip != 'true'
uses: actions/setup-node@v6
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version: 24.x

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
fetch-depth: 0

Expand All @@ -27,7 +27,7 @@ jobs:
version: 11

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
Expand Down Expand Up @@ -69,14 +69,14 @@ jobs:
working-directory: plugin

- name: Install Temporal CLI
uses: temporalio/setup-temporal@v0
uses: temporalio/setup-temporal@1059a504f87e7fa2f385e3fa40d1aa7e62f1c6ca # v0

- name: Install Bun
# opencode-session-debt.test.ts shells out to `bun` to seed a bun:sqlite
# database under the OpenCode debt-doctor scenario. Without bun on PATH
# the test fails with `spawnSync bun ENOENT`. Bun is OpenCode's runtime;
# keeping it on the CI runner mirrors the production environment.
uses: oven-sh/setup-bun@v2
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
with:
bun-version: latest

Expand All @@ -95,7 +95,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
fetch-depth: 0

Expand All @@ -105,7 +105,7 @@ jobs:
version: 11

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version: 24.x
cache: "pnpm"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-gates-pilot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: Security gates pilot
# SHA pinning doesn't work cross-repo with private repos + GITHUB_TOKEN scope;
# use @main until the reusable workflow is stable enough for branch protection.
uses: Sharper-Flow/sharperflow-security-gates/.github/workflows/javascript-security-gate.yml@v0
uses: Sharper-Flow/sharperflow-security-gates/.github/workflows/javascript-security-gate.yml@6a15da3b7eae6b6146deb72472d29b58f5c5c1c1 # v0
permissions:
contents: read
with:
Expand Down
Loading