We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1011188 commit 180656bCopy full SHA for 180656b
2 files changed
.github/actions/setup/action.yml
@@ -7,10 +7,9 @@ runs:
7
- name: Install pnpm
8
uses: pnpm/action-setup@v3
9
- name: Install node
10
- uses: actions/setup-node@v4
+ uses: actions/setup-node@v5
11
with:
12
cache: pnpm
13
- node-version: 24.12.0
14
- name: Install dependencies
15
shell: bash
16
run: pnpm install
.github/workflows/build.yml
@@ -11,9 +11,6 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
-env:
- FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
-
17
jobs:
18
build:
19
name: Build
@@ -24,7 +21,7 @@ jobs:
24
21
id-token: write # Required for provenance and trusted publishing
25
22
packages: write
26
23
steps:
27
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
28
29
fetch-depth: 0
30
0 commit comments