@@ -24,25 +24,25 @@ jobs:
2424 runs-on : ubuntu-24.04
2525 timeout-minutes : 10
2626 steps :
27- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
27+ - uses : actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
2828
2929 - uses : oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
3030 with :
31- bun-version : 1.3.13
31+ bun-version : 1.3.14
3232
3333 # Bun is the package manager and script runner, but Next.js (and tsc)
3434 # run on Node. The runner image is pinned (ubuntu-24.04) but Node
3535 # version inside it can still drift; pin via .nvmrc so a future
3636 # GitHub bump can't break the build silently.
37- - uses : actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4 .0
37+ - uses : actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5 .0
3838 with :
3939 node-version-file : .nvmrc
4040
4141 # Cache Bun's resolved package store keyed on the lockfile hash. Cuts
4242 # ~10s off `bun install` on a clean runner; the restore-key falls back
4343 # to any prior cache from this OS so partial hits still help.
4444 - name : Cache Bun install cache
45- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
45+ uses : actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
4646 with :
4747 path : ~/.bun/install/cache
4848 key : ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
5555 # on this OS — so most CI runs hit a cache and skip rebuilding
5656 # unchanged webpack modules.
5757 - name : Cache Next.js build cache
58- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
58+ uses : actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
5959 with :
6060 path : ${{ github.workspace }}/.next/cache
6161 key : ${{ runner.os }}-nextjs-${{ hashFiles('bun.lock') }}-${{ github.sha }}
@@ -117,7 +117,7 @@ jobs:
117117
118118 - name : Cache Playwright browsers
119119 id : playwright-cache
120- uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
120+ uses : actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
121121 with :
122122 path : ~/.cache/ms-playwright
123123 key : ${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}
@@ -164,7 +164,7 @@ jobs:
164164 contents : read
165165 pull-requests : write
166166 steps :
167- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
167+ - uses : actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
168168 - name : Dependency Review
169169 uses : actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # v4.9.0
170170 with :
@@ -182,12 +182,12 @@ jobs:
182182 permissions :
183183 contents : read
184184 steps :
185- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
185+ - uses : actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
186186 with :
187187 # TruffleHog diffs base..head and needs the full history present.
188188 fetch-depth : 0
189189 - name : TruffleHog scan
190- uses : trufflesecurity/trufflehog@17456f8c7d042d8c82c9a8ca9e937231f9f42e26 # v3.95.2
190+ uses : trufflesecurity/trufflehog@6f3c981e7b77f235fd2702dd74af25fc4b72bf11 # v3.96.0
191191 with :
192192 # On PRs: scan the diff between base and head. On push to main:
193193 # scan the previous commit to HEAD. The action infers both from
0 commit comments