Skip to content

Commit f99d16d

Browse files
committed
ci: upgrade to node 24
1 parent 2346ba0 commit f99d16d

3 files changed

Lines changed: 7 additions & 12 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on:
1515
labels: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020
- uses: pnpm/action-setup@v4
21-
- uses: actions/setup-node@v4
21+
- uses: actions/setup-node@v6
2222
with:
2323
node-version-file: '.nvmrc'
2424
cache: 'pnpm'
@@ -35,10 +35,7 @@ jobs:
3535
run: pnpm i
3636

3737
- name: Publish packages
38-
run: pnpm lerna publish --no-private --force-publish --conventional-commits --no-changelog --yes
39-
env:
40-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
run: NODE_AUTH_TOKEN="" pnpm lerna publish --no-private --force-publish --conventional-commits --no-changelog --yes
4239

4340
- run: |
4441
export PREVIOUS_TAG=$(git tag --sort=-creatordate --merged origin/main | sed -n '2p')

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
release:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

20-
- uses: actions/setup-node@v4
20+
- uses: actions/setup-node@v6
2121
with:
2222
node-version: 18.x
2323

.github/workflows/tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,9 @@ jobs:
6161
CB_USER: Administrator
6262
CB_PASSWORD: password
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v6
6565
- uses: pnpm/action-setup@v4
66-
with:
67-
version: 9.0.6
68-
- uses: actions/setup-node@v4
66+
- uses: actions/setup-node@v6
6967
with:
7068
node-version-file: '.nvmrc'
7169
cache: 'pnpm'

0 commit comments

Comments
 (0)