also looking at this
chore(deps): update all non-major dependencies
#39
5 files
+16
-12
| @@ -15,16 +15,20 @@ jobs: | ||
| 15 | 15 | runs-on: ubuntu-latest |
| 16 | 16 | |
| 17 | 17 | steps: |
| 18 | - name: Checkout | |
| 19 | uses: actions/checkout@v6 | |
| 18 | - uses: actions/checkout@v6.0.2 | |
| 20 | 19 | with: |
| 21 | 20 | fetch-depth: 0 |
| 22 | 21 | |
| 23 | 22 | - name: Setup Bun |
| 24 | 23 | uses: oven-sh/setup-bun@v2 |
| 25 | 24 | |
| 26 | - name: Setup Pantry | |
| 27 | uses: home-lang/pantry-setup@v1 | |
| 25 | - name: Use cached node_modules | |
| 26 | uses: actions/cache@v5.0.3 | |
| 27 | with: | |
| 28 | path: node_modules | |
| 29 | key: node-modules-${{ hashFiles('**/bun.lock') }} | |
| 30 | restore-keys: | | |
| 31 | node-modules- | |
| 28 | 32 | |
| 29 | 33 | - name: Install Dependencies |
| 30 | 34 | run: bun install |