ReviewOS

also looking at this

stacks/bun-query-builder

chore(deps): update all non-major dependencies

#21
Merged chrisbbreuer wants to merge buddy-bot/update-non-major-updates-1756735685818 into main
3 files +17 -17
.github/workflows/buddy-bot.ymlmodified+10-10
Changes to .github/workflows/buddy-bot.yml
@@ -119,18 +119,18 @@ jobs:
119119 if: ${{ needs.determine-jobs.outputs.run_check == 'true' || needs.determine-jobs.outputs.run_update == 'true' || needs.determine-jobs.outputs.run_dashboard == 'true' }}
120120 steps:
121121 - name: Checkout repository
122 uses: actions/checkout@v5
122 uses: actions/checkout@v5.0.0
123123 with:
124124 token: ${{ secrets.GITHUB_TOKEN }}
125125 fetch-depth: 0 # Fetch full history for rebasing
126126 persist-credentials: true
127127
128128 - name: Setup Bun
129 uses: oven-sh/setup-bun@v2
129 uses: oven-sh/setup-bun@v2.0.2
130130
131131 - name: Setup PHP and Composer (if needed)
132132 if: ${{ hashFiles('composer.json') != '' }}
133 uses: shivammathur/setup-php@v2
133 uses: shivammathur/setup-php@2.35.4
134134 with:
135135 php-version: '8.4'
136136 tools: composer
@@ -156,14 +156,14 @@ jobs:
156156
157157 steps:
158158 - name: Checkout repository
159 uses: actions/checkout@v5
159 uses: actions/checkout@v5.0.0
160160 with:
161161 token: ${{ secrets.GITHUB_TOKEN }}
162162 fetch-depth: 0
163163 persist-credentials: true
164164
165165 - name: Setup Bun
166 uses: oven-sh/setup-bun@v2
166 uses: oven-sh/setup-bun@v2.0.2
167167
168168 - name: Install dependencies
169169 run: bun install
@@ -237,18 +237,18 @@ jobs:
237237
238238 steps:
239239 - name: Checkout repository
240 uses: actions/checkout@v5
240 uses: actions/checkout@v5.0.0
241241 with:
242242 token: ${{ secrets.GITHUB_TOKEN }}
243243 fetch-depth: 0
244244 persist-credentials: true
245245
246246 - name: Setup Bun
247 uses: oven-sh/setup-bun@v2
247 uses: oven-sh/setup-bun@v2.0.2
248248
249249 - name: Setup PHP and Composer (if needed)
250250 if: ${{ hashFiles('composer.json') != '' }}
251 uses: shivammathur/setup-php@v2
251 uses: shivammathur/setup-php@2.35.4
252252 with:
253253 php-version: '8.4'
254254 tools: composer
@@ -346,12 +346,12 @@ jobs:
346346
347347 steps:
348348 - name: Checkout repository
349 uses: actions/checkout@v5
349 uses: actions/checkout@v5.0.0
350350 with:
351351 token: ${{ secrets.GITHUB_TOKEN }}
352352
353353 - name: Setup Bun
354 uses: oven-sh/setup-bun@v2
354 uses: oven-sh/setup-bun@v2.0.2
355355
356356 - name: Install dependencies
357357 run: bun install
.github/workflows/ci.ymlmodified+4-4
Changes to .github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
2424 uses: oven-sh/setup-bun@v2
2525
2626 - name: Use cached node_modules
27 uses: actions/cache@v4
27 uses: actions/cache@v4.2.4
2828 with:
2929 path: node_modules
3030 key: node-modules-${{ hashFiles('**/bun.lock') }}
@@ -47,7 +47,7 @@ jobs:
4747 uses: oven-sh/setup-bun@v2
4848
4949 - name: Use cached node_modules
50 uses: actions/cache@v4
50 uses: actions/cache@v4.2.4
5151 with:
5252 path: node_modules
5353 key: node-modules-${{ hashFiles('**/bun.lock') }}
@@ -93,7 +93,7 @@ jobs:
9393 uses: oven-sh/setup-bun@v2
9494
9595 - name: Use cached node_modules
96 uses: actions/cache@v4
96 uses: actions/cache@v4.2.4
9797 with:
9898 path: node_modules
9999 key: node-modules-${{ hashFiles('**/bun.lock') }}
@@ -122,7 +122,7 @@ jobs:
122122 uses: oven-sh/setup-bun@v2
123123
124124 - name: Use cached node_modules
125 uses: actions/cache@v4.2.4
125 uses: actions/cache@v4.2.4.2.4
126126 with:
127127 path: node_modules
128128 key: node-modules-${{ hashFiles('**/bun.lock') }}
package.jsonmodified+3-3
Changes to package.json
@@ -1,7 +1,7 @@
11{
22 "name": "bun-query-builder",
33 "type": "module",
4 "version": "0.1.1",
4 "version": "0.1.2",
55 "description": "A simple yet performant query builder for TypeScript. Built with Bun.",
66 "author": "Chris Breuer <chris@stacksjs.org>",
77 "license": "MIT",
@@ -77,11 +77,11 @@
7777 "@stacksjs/docs": "^0.70.23",
7878 "@stacksjs/eslint-config": "^4.14.0-beta.3",
7979 "@stacksjs/gitlint": "^0.1.5",
80 "@stacksjs/logsmith": "^0.1.15",
80 "@stacksjs/logsmith": "^0.1.18",
8181 "@types/bun": "^1.2.21",
8282 "buddy-bot": "^0.8.10",
8383 "bun-git-hooks": "^0.2.19",
84 "bun-plugin-dtsx": "0.21.12",
84 "bun-plugin-dtsx": "0.9.5",
8585 "bunfig": "^0.15.0",
8686 "typescript": "^5.9.2"
8787 },