Skip to content

Commit 5bec75d

Browse files
committed
chore(ui-scripts): remove remaining references to old npm tokens
1 parent f9f44a4 commit 5bec75d

14 files changed

Lines changed: 26 additions & 1866 deletions

File tree

.env.example

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/_manual-release-reusable.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Manual release to npm (Reusable)
22
on:
33
workflow_call:
4-
secrets:
5-
inherit
64

75
permissions:
86
id-token: write
@@ -17,11 +15,12 @@ jobs:
1715
with:
1816
fetch-depth: 0
1917
- uses: pnpm/action-setup@v4
20-
- name: Install Node 22
18+
- name: Install Node 24
2119
uses: actions/setup-node@v4
2220
with:
23-
node-version: '22'
21+
node-version: '24'
2422
cache: 'pnpm'
23+
registry-url: "https://registry.npmjs.org"
2524
- name: Install packages
2625
run: pnpm install --frozen-lockfile
2726
- name: Set up project

.github/workflows/_pr-release-reusable.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: PR release to npm (Reusable)
22
on:
33
workflow_call:
4-
secrets:
5-
inherit
64

75
permissions:
86
id-token: write
@@ -19,14 +17,15 @@ jobs:
1917
- uses: pnpm/action-setup@v4
2018
- uses: actions/setup-node@v4
2119
with:
22-
node-version: '22'
20+
node-version: '24'
2321
cache: 'pnpm'
22+
registry-url: "https://registry.npmjs.org"
2423
- name: Install packages
2524
run: pnpm install --frozen-lockfile
2625
- name: Set up project
2726
run: pnpm run bootstrap
2827
- name: Release to NPM
29-
run: pnpm run release -- --prRelease
28+
run: pnpm run release --prRelease
3029
- name: Get commit message
3130
run: | # puts the first line of the last commit message to the commmit_message env var
3231
echo "commmit_message=$(git log --format=%B -n 1 ${{ github.event.after }} | head -n 1)" >> $GITHUB_ENV

.github/workflows/_release-reusable.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Release to npm (Reusable)
22
on:
33
workflow_call:
4-
secrets:
5-
inherit
64

75
permissions:
86
id-token: write # Required for OIDC
@@ -19,8 +17,9 @@ jobs:
1917
- uses: pnpm/action-setup@v4
2018
- uses: actions/setup-node@v4
2119
with:
22-
node-version: '22'
20+
node-version: '24'
2321
cache: 'pnpm'
22+
registry-url: "https://registry.npmjs.org"
2423
- name: Install packages.
2524
run: pnpm install --frozen-lockfile
2625
- name: Set up project.

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- uses: pnpm/action-setup@v4
17-
- name: Install Node 22
17+
- name: Install Node 24
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: '22'
20+
node-version: '24'
2121
cache: 'pnpm'
2222
- run: pnpm install --frozen-lockfile && pnpm run bootstrap
2323
- name: Set build directory and deployment path based on branch
@@ -60,10 +60,10 @@ jobs:
6060
steps:
6161
- uses: actions/checkout@v4
6262
- uses: pnpm/action-setup@v4
63-
- name: Install Node 22
63+
- name: Install Node 24
6464
uses: actions/setup-node@v4
6565
with:
66-
node-version: '22'
66+
node-version: '24'
6767
cache: 'pnpm'
6868
- run: pnpm install --frozen-lockfile && pnpm run bootstrap
6969
- name: Build docs-app

.github/workflows/pr-validation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: pnpm/action-setup@v4
1212
- uses: actions/setup-node@v4
1313
with:
14-
node-version: '22'
14+
node-version: '24'
1515
cache: 'pnpm'
1616
- name: Install dependencies
1717
run: pnpm install --frozen-lockfile
@@ -29,7 +29,7 @@ jobs:
2929
- uses: pnpm/action-setup@v4
3030
- uses: actions/setup-node@v4
3131
with:
32-
node-version: '22'
32+
node-version: '24'
3333
cache: 'pnpm'
3434
- name: Install dependencies
3535
run: pnpm install --frozen-lockfile
@@ -45,7 +45,7 @@ jobs:
4545
- uses: pnpm/action-setup@v4
4646
- uses: actions/setup-node@v4
4747
with:
48-
node-version: '22'
48+
node-version: '24'
4949
cache: 'pnpm'
5050
- name: Install dependencies
5151
run: pnpm install --frozen-lockfile

.github/workflows/preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- uses: pnpm/action-setup@v4
18-
- name: Install Node 22
18+
- name: Install Node 24
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: '22'
21+
node-version: '24'
2222
cache: 'pnpm'
2323
- name: Install and bootstrap
2424
run: pnpm install --frozen-lockfile && pnpm run bootstrap

.github/workflows/visual-regression.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: pnpm/action-setup@v4
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: '22'
19+
node-version: '24'
2020
cache: 'pnpm'
2121
- name: Cache Cypress binary
2222
uses: actions/cache@v4
@@ -59,7 +59,7 @@ jobs:
5959
- uses: pnpm/action-setup@v4
6060
- uses: actions/setup-node@v4
6161
with:
62-
node-version: 22
62+
node-version: 24
6363
cache: 'pnpm'
6464
- name: Build InstUI
6565
run: pnpm install --frozen-lockfile && pnpm run bootstrap

0 commit comments

Comments
 (0)