Skip to content

Commit c41a169

Browse files
committed
chore: oidc conversion
1 parent aaf456a commit c41a169

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Use Node.js
1515
uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
17+
node-version: 20
1818
cache: 'yarn'
1919

2020
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,14 @@ jobs:
2222
- name: Use Node.js
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: 18
25+
node-version: 20
2626
cache: 'yarn'
2727

28+
- name: Upgrade npm for OIDC
29+
run: npm i -g npm@^11.5.1
30+
31+
- run: npm config set registry https://registry.npmjs.org
32+
2833
- name: Install dependencies
2934
run: yarn install --frozen-lockfile
3035

@@ -39,4 +44,3 @@ jobs:
3944
publish: yarn changeset publish
4045
env:
4146
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)