File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ jobs:
2626
2727 steps :
2828 - name : Checkout code
29- uses : actions/checkout@v4
29+ uses : actions/checkout@v6
3030
3131 - name : Setup Node.js v${{ matrix.node-version }}
32- uses : actions/setup-node@v4
32+ uses : actions/setup-node@v6
3333 with :
3434 node-version : ${{ matrix.node-version }}
3535
4545 echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
4646
4747 - name : Setup pnpm cache
48- uses : actions/cache@v4
48+ uses : actions/cache@v5
4949 with :
5050 path : ${{ env.STORE_PATH }}
5151 key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ jobs:
3232
3333 steps :
3434 - name : Checkout code
35- uses : actions/checkout@v4
35+ uses : actions/checkout@v6
3636
3737 - name : Setup Node.js v${{ matrix.node-version }}
38- uses : actions/setup-node@v4
38+ uses : actions/setup-node@v6
3939 with :
4040 node-version : ${{ matrix.node-version }}
4141 registry-url : " https://registry.npmjs.org"
5252 echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
5353
5454 - name : Setup pnpm cache
55- uses : actions/cache@v4
55+ uses : actions/cache@v5
5656 with :
5757 path : ${{ env.STORE_PATH }}
5858 key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
7676 uses : changesets/action@v1
7777 id : changesets
7878 with :
79- publish : npm run publish-package
79+ publish : NODE_AUTH_TOKEN="" npm run publish-package
8080 commit : ${{ env.COMMIT_MSG }}
8181 title : ${{ env.PR_TITLE }}
8282 env :
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
2525
2626 steps :
2727 - name : Checkout code
28- uses : actions/checkout@v4
28+ uses : actions/checkout@v6
2929
3030 - name : Setup Node.js v${{ matrix.node-version }}
31- uses : actions/setup-node@v4
31+ uses : actions/setup-node@v6
3232 with :
3333 node-version : ${{ matrix.node-version }}
3434
4444 echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
4545
4646 - name : Setup pnpm cache
47- uses : actions/cache@v4
47+ uses : actions/cache@v5
4848 with :
4949 path : ${{ env.STORE_PATH }}
5050 key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
6161 run : pnpm test-coverage
6262
6363 - name : Upload coverage report
64- uses : actions/upload-artifact@v4
64+ uses : actions/upload-artifact@v6
6565 with :
6666 name : coverage
6767 path : coverage/lcov-report/
You can’t perform that action at this time.
0 commit comments