Skip to content

Commit e9fec4d

Browse files
authored
Fix problem with generated bpp actions not working (#1255)
* fix: fix action failing with setup * chore: update Node.js version to 18.x in workflow Node.js 16 is not supported after pnpm 9 * fix: resolve warnings for set-output * chore: update Node.js version from 18.x to 20.x in bpp.yml
1 parent 5aa2fe3 commit e9fec4d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/init/bpp.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
1515
restore-keys: |
1616
${{ runner.os }}-
17-
- uses: pnpm/action-setup@v2.2.4
17+
- uses: pnpm/action-setup@v2.4.1
1818
with:
1919
version: latest
2020
run_install: true
21-
- name: Use Node.js 16.x
22-
uses: actions/setup-node@v3.4.1
21+
- name: Use Node.js 20.x
22+
uses: actions/setup-node@v3.5.1
2323
with:
24-
node-version: 16.x
24+
node-version: 20.x
2525
cache: "pnpm"
2626
- name: Build the extension
2727
run: pnpm build

0 commit comments

Comments
 (0)