ReviewOS

also looking at this

stacks/ts-cloud

chore(deps): update all non-major dependencies

#29
Closed chrisbbreuer wants to merge buddy-bot/update-non-major-updates-1769789321216 into main
2 files +11 -39
.github/workflows/ci.ymlmodified+4-4
Changes to .github/workflows/ci.yml
@@ -18,7 +18,7 @@ jobs:
1818 runs-on: ubuntu-latest
1919
2020 steps:
21 - uses: actions/checkout@v6.0.2
21 - uses: actions/checkout@v6.0.1
2222
2323 - name: Install Bun
2424 uses: oven-sh/setup-bun@v2.1.2
@@ -41,7 +41,7 @@ jobs:
4141 runs-on: ubuntu-latest
4242
4343 steps:
44 - uses: actions/checkout@v6.0.2
44 - uses: actions/checkout@v6.0.1
4545
4646 - name: Install Bun
4747 uses: oven-sh/setup-bun@v2.1.2
@@ -64,7 +64,7 @@ jobs:
6464 runs-on: ubuntu-latest
6565
6666 steps:
67 - uses: actions/checkout@v6.0.2
67 - uses: actions/checkout@v6.0.1
6868
6969 - name: Install Bun
7070 uses: oven-sh/setup-bun@v2.1.2
@@ -87,7 +87,7 @@ jobs:
8787 runs-on: ubuntu-latest
8888
8989 steps:
90 - uses: actions/checkout@v6.0.2
90 - uses: actions/checkout@v6.0.1
9191
9292 - name: Install Bun
9393 uses: oven-sh/setup-bun@v2.1.2
.github/workflows/release.ymlmodified+7-35
Changes to .github/workflows/release.yml
@@ -15,50 +15,22 @@ jobs:
1515
1616 steps:
1717 - name: Checkout
18 uses: actions/checkout@v6
18 uses: actions/checkout@v6.0.2
1919 with:
2020 fetch-depth: 0
2121
22 - name: Setup Node.js
23 uses: actions/setup-node@v6.2.0
24 with:
25 node-version: '24.13.0'
26 registry-url: 'https://registry.npmjs.org'
27
28 - name: Setup Zig
29 run: |
30 curl -L https://ziglang.org/builds/zig-x86_64-linux-0.16.0-dev.1859+212968c57.tar.xz -o zig.tar.xz
31 tar -xf zig.tar.xz
32 mv zig-x86_64-linux-0.16.0-dev.1859+212968c57 zig
33 echo "$PWD/zig" >> $GITHUB_PATH
34
35 - name: Verify Zig
36 run: zig version
22 - name: Setup Bun
23 uses: oven-sh/setup-bun@v2.1.2
3724
38 - name: Build pantry from source
39 run: |
40 git clone --depth 1 https://github.com/home-lang/pantry.git ../pantry
41 cd ../pantry/packages/zig
42 mkdir -p pantry
43 cd pantry
44 git clone --depth 1 https://github.com/zig-utils/zig-cli.git
45 git clone --depth 1 https://github.com/zig-utils/zig-config.git
46 git clone --depth 1 https://github.com/zig-utils/zig-test-framework.git
47
48 - name: Compile pantry
49 run: |
50 cd ../pantry/packages/zig
51 zig build
52 echo "$PWD/zig-out/bin" >> $GITHUB_PATH
25 - name: Setup Pantry
26 uses: home-lang/pantry-setup@v1
5327
5428 - name: Publish
55 run: pantry npm:publish --access public
29 run: pantry npm:publish
5630 env:
5731 NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
5832
5933 - name: Create GitHub Release
60 uses: softprops/action-gh-release@v2
61 with:
62 generate_release_notes: true
34 uses: stacksjs/action-releaser@v1.2.6
6335 env:
6436 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}