Skip to content

Commit 61ffbee

Browse files
committed
[SVLS-8378] migrate to trusted publishing
1 parent e581756 commit 61ffbee

4 files changed

Lines changed: 11 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Node 22
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: 22
16+
node-version: 24
1717

1818
- name: Cache Node modules
1919
id: cache-node-modules
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
max-parallel: 4
4545
matrix:
46-
node-version: [20, 22]
46+
node-version: [20, 22, 24]
4747

4848
steps:
4949
- name: Checkout

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
- name: Checkout
1111
uses: actions/checkout@v3
1212

13-
- name: Set up Node 20
13+
- name: Set up Node 24
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: 20
16+
node-version: 24
1717

1818
- name: Cache Node modules
1919
id: cache-node-modules

.github/workflows/monitor_api_integration_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v3
1616

17-
- name: Set up Node 18
17+
- name: Set up Node 24
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: 18
20+
node-version: 24
2121

2222
- name: Cache Node modules
2323
id: cache-node-modules

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,19 @@ on:
44
types: [created]
55
workflow_dispatch:
66

7+
permissions:
8+
id-token: write
9+
710
jobs:
811
build:
912
runs-on: ubuntu-latest
1013
steps:
1114
- uses: actions/checkout@v2
1215
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
1316
with:
14-
node-version: "22.x"
17+
node-version: "24.x"
1518
registry-url: "https://registry.npmjs.org"
19+
- run: corepack enable && corepack prepare yarn@4.10.3 --activate
1620
- run: yarn
1721
- run: yarn build
1822
- run: yarn publish

0 commit comments

Comments
 (0)