@@ -298,16 +298,11 @@ jobs:
298298 package : [drizzle-kit, drizzle-zod, drizzle-seed, drizzle-typebox, drizzle-valibot, drizzle-arktype, eslint-plugin-drizzle]
299299 steps :
300300 - uses : actions/checkout@v4
301- - uses : actions/setup-node@v4
302- with : { node-version: '24', registry-url: 'https://registry.npmjs.org' }
303- - uses : pnpm/action-setup@v3
304- with : { version: latest, run_install: false }
305- - uses : actions/cache@v4
306- with :
307- path : ~/.pnpm-store
308- key : ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
309- restore-keys : ${{ runner.os }}-pnpm-
310- - run : pnpm fetch && pnpm install --frozen-lockfile --prefer-offline
301+ - uses : pnpm/action-setup@v4
302+ with : { run_install: false }
303+ - uses : actions/setup-node@v6
304+ with : { node-version: '24', registry-url: 'https://registry.npmjs.org', cache: 'pnpm', cache-dependency-path: pnpm-lock.yaml }
305+ - run : pnpm install --frozen-lockfile --prefer-offline
311306 - uses : oven-sh/setup-bun@v2
312307 - name : Download package tarball
313308 uses : actions/download-artifact@v4
@@ -328,15 +323,10 @@ jobs:
328323 package : [node10, node16-cjs, node16-esm, bundler]
329324 steps :
330325 - uses : actions/checkout@v4
331- - uses : actions/setup-node@v4
332- with : { node-version: '24', registry-url: 'https://registry.npmjs.org' }
333- - uses : pnpm/action-setup@v3
334- with : { version: latest, run_install: false }
335- - uses : actions/cache@v4
336- with :
337- path : ~/.pnpm-store
338- key : ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
339- restore-keys : ${{ runner.os }}-pnpm-
326+ - uses : pnpm/action-setup@v4
327+ with : { run_install: false }
328+ - uses : actions/setup-node@v6
329+ with : { node-version: '24', registry-url: 'https://registry.npmjs.org', cache: 'pnpm', cache-dependency-path: pnpm-lock.yaml }
340330 - run : pnpm fetch && pnpm install --frozen-lockfile --prefer-offline
341331 - uses : oven-sh/setup-bun@v2
342332 - name : Download drizzle-orm tarball
0 commit comments