@@ -29,10 +29,10 @@ jobs:
2929 docs_changed : ${{ steps.filter.outputs.docs }}
3030 src_changed : ${{ steps.filter.outputs.src }}
3131 steps :
32- - uses : actions/checkout@v4
32+ - uses : actions/checkout@v6
3333 with :
3434 fetch-depth : 2
35- - uses : dorny/paths-filter@v3
35+ - uses : dorny/paths-filter@v4
3636 id : filter
3737 with :
3838 base : ${{ github.ref_name }}
@@ -55,16 +55,17 @@ jobs:
5555 runs-on : ubuntu-24.04
5656 if : ${{ needs.check_changes.outputs.src_changed == 'true' || github.event_name == 'workflow_dispatch' }}
5757 steps :
58- - uses : actions/checkout@v4
58+ - uses : actions/checkout@v6
5959 - name : Inject Env
6060 run : |
6161 echo "INPUT_PLATFORM=${{ github.event.inputs.platform }}" >> $GITHUB_ENV
6262 echo "INPUT_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
63- - uses : pnpm/action-setup@v4
63+ - uses : pnpm/action-setup@v6
6464 with :
65+ cache : true
6566 version : 11
6667 - name : Setup Node.js
67- uses : actions/setup-node@v4
68+ uses : actions/setup-node@v6
6869 with :
6970 node-version : 24
7071 cache : ' pnpm'
9798 runs-on : ubuntu-24.04
9899 if : ${{ needs.check_changes.outputs.locale_changed == 'true' }}
99100 steps :
100- - uses : actions/checkout@v4
101+ - uses : actions/checkout@v6
101102 - name : Setup Node.js
102- uses : actions/setup-node@v4
103+ uses : actions/setup-node@v6
103104 with :
104105 node-version : 24
105106 - name : Sort
@@ -117,12 +118,13 @@ jobs:
117118 runs-on : ubuntu-24.04
118119 if : ${{ needs.check_changes.outputs.docs_changed == 'true' }}
119120 steps :
120- - uses : actions/checkout@v4
121- - uses : pnpm/action-setup@v4
121+ - uses : actions/checkout@v6
122+ - uses : pnpm/action-setup@v6
122123 with :
124+ cache : true
123125 version : 11
124126 - name : Setup Node.js
125- uses : actions/setup-node@v4
127+ uses : actions/setup-node@v6
126128 with :
127129 node-version : 24
128130 - name : Install dependencies
@@ -146,7 +148,7 @@ jobs:
146148 runs-on : ubuntu-24.04
147149 steps :
148150 - name : Setup Node.js
149- uses : actions/setup-node@v4
151+ uses : actions/setup-node@v6
150152 with :
151153 node-version : 24
152154 - name : Download
@@ -165,7 +167,7 @@ jobs:
165167 runs-on : ubuntu-24.04
166168 steps :
167169 - name : Setup Node.js
168- uses : actions/setup-node@v4
170+ uses : actions/setup-node@v6
169171 with :
170172 node-version : 24
171173 - name : Download
0 commit comments