Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ jobs:
- uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: '22'

- name: Setup Bun
uses: oven-sh/setup-bun@v2

- name: Cache bun dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-

- name: Cache turbo
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
uses: oven-sh/setup-bun@v2

- name: Cache bun dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
- uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: '22'

- name: Setup Bun
uses: oven-sh/setup-bun@v2

- name: Cache bun dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2

- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: 22
registry-url: 'https://registry.npmjs.org'
Expand All @@ -29,7 +29,7 @@ jobs:
run: npm install -g npm@latest

- name: Cache bun dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ name: Release Binaries
on:
push:
tags:
- 'v*'
# Plain semver only. 'v*' also matched scratch tags (e.g. v0.18.1-hooktest),
# which kicked off the full four-target binary matrix and failed noisily
# once the tag was deleted. Every real release here is plain semver.
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
build:
Expand Down Expand Up @@ -34,7 +37,7 @@ jobs:
bun-version: "latest"

- name: Cache bun dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion apps/agent-sdk/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/cli/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions apps/dashboard/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions apps/dashboard/server/index.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion apps/dashboard/server/index.d.ts.map

This file was deleted.

Loading
Loading