Skip to content

Commit a69a2db

Browse files
committed
chore: migrate workflow actions to node24
1 parent 60edbb1 commit a69a2db

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ concurrency:
2424
group: "pages"
2525
cancel-in-progress: false
2626

27+
env:
28+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
29+
2730
jobs:
2831
# Build job
2932
build:
@@ -32,13 +35,13 @@ jobs:
3235
runs-on: ubuntu-latest
3336
steps:
3437
- name: Checkout
35-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3639
- name: Setup pnpm
3740
uses: pnpm/action-setup@v4
3841
with:
3942
version: "10.28.1"
4043
- name: Setup Node
41-
uses: actions/setup-node@v4
44+
uses: actions/setup-node@v5
4245
with:
4346
node-version: "22"
4447
cache: pnpm
@@ -59,7 +62,7 @@ jobs:
5962
- name: Export release version manifest
6063
run: pnpm run report:releases -- --write out/release-versions.json
6164
- name: Upload to Bucket
62-
uses: JohnGuan/oss-upload-action@main
65+
uses: JohnGuan/oss-upload-action@v1.0.2
6366
with:
6467
key-id: ${{ secrets.ALICLOUDOSS_KEY_ID }}
6568
key-secret: ${{ secrets.ALICLOUDOSS_KEY_SECRET }}

0 commit comments

Comments
 (0)