Skip to content

Commit 4adcaf7

Browse files
fix: correct GitHub Actions versions and remove stale Bun pin; add scripts to tsconfig
Co-authored-by: adelrodriguez <4149180+adelrodriguez@users.noreply.github.com>
1 parent 6587966 commit 4adcaf7

File tree

6 files changed

+5
-11
lines changed

6 files changed

+5
-11
lines changed

.github/workflows/adamantite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v4
3838

3939
- name: Setup Node.js
40-
uses: actions/setup-node@v6
40+
uses: actions/setup-node@v4
4141
with:
4242
node-version: "24"
4343

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030

3131
- name: Setup Bun
3232
uses: oven-sh/setup-bun@v2
33-
with:
34-
bun-version: 1.3.6
3533

3634
- name: Cache dependencies
3735
uses: actions/cache@v4

.github/workflows/opencode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
issues: read
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v6
24+
uses: actions/checkout@v4
2525

2626
- name: Run opencode
2727
uses: anomalyco/opencode/github@latest

.github/workflows/release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: ${{ github.event.workflow_run.conclusion == 'success' }}
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v6
24+
uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0
2727

@@ -31,15 +31,13 @@ jobs:
3131
# changeset publish runs npm publish, it will automatically use OIDC
3232
# and generate provenance attestations.
3333
- name: Setup Node.js
34-
uses: actions/setup-node@v6
34+
uses: actions/setup-node@v4
3535
with:
3636
node-version: "24"
3737
registry-url: "https://registry.npmjs.org"
3838

3939
- name: Setup Bun
4040
uses: oven-sh/setup-bun@v2
41-
with:
42-
bun-version: 1.3.6
4341

4442
- name: Install dependencies
4543
run: bun install --frozen-lockfile

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ jobs:
3030

3131
- name: Setup Bun
3232
uses: oven-sh/setup-bun@v2
33-
with:
34-
bun-version: 1.3.6
3533

3634
- name: Cache dependencies
3735
uses: actions/cache@v4

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"moduleResolution": "bundler",
1111
"verbatimModuleSyntax": true
1212
},
13-
"include": ["src/**/*.ts", "*.config.ts"],
13+
"include": ["src/**/*.ts", "scripts/**/*.ts", "*.config.ts"],
1414
"exclude": ["node_modules", "dist"]
1515
}

0 commit comments

Comments
 (0)