Skip to content

Commit 232453d

Browse files
committed
more workflow changes
1 parent 710c315 commit 232453d

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
contents: read
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626

2727
- name: Setup Biome
2828
uses: biomejs/setup-biome@v2

.github/workflows/publish.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
packages: write
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828

2929
- name: Setup Bun
3030
uses: oven-sh/setup-bun@v2
@@ -38,16 +38,18 @@ jobs:
3838
run: bun run build
3939

4040
- name: Configure .npmrc
41-
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc
41+
run: |
42+
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
43+
echo "always-auth=true" >> ~/.npmrc
4244
4345
- name: Publish
4446
if: ${{ !inputs.dry-run }}
4547
run: bun publish --ignore-scripts --registry https://npm.pkg.github.com
4648
env:
47-
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4850

4951
- name: Publish (dry-run)
5052
if: ${{ inputs.dry-run }}
5153
run: bun publish --ignore-scripts --dry-run --registry https://npm.pkg.github.com
5254
env:
53-
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
pull-requests: write
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626

2727
- name: Setup Bun
2828
uses: oven-sh/setup-bun@v2

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
contents: read
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525

2626
- name: Setup Bun
2727
uses: oven-sh/setup-bun@v2

0 commit comments

Comments
 (0)