@@ -14,10 +14,10 @@ jobs:
1414 node-version : [18.x]
1515
1616 steps :
17- - uses : actions/checkout@v4
17+ - uses : actions/checkout@v6
1818
1919 - name : Use Node.js ${{ matrix.node-version }}
20- uses : actions/setup-node@v4
20+ uses : actions/setup-node@v6
2121 with :
2222 node-version : ${{ matrix.node-version }}
2323
2626 echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
2727
2828 - name : Cache node modules
29- uses : actions/cache@v4
29+ uses : actions/cache@v5
3030 env :
3131 cache-name : cache-node-modules
3232 with :
4444 --out tmp/materials
4545
4646 - name : Archive materials
47- uses : actions/upload-artifact@v4
47+ uses : actions/upload-artifact@v6
4848 with :
4949 name : apache-echarts-${{env.RELEASE_VERSION}}-release-materials
5050 path : |
@@ -59,10 +59,10 @@ jobs:
5959 node-version : [18.x]
6060
6161 steps :
62- - uses : actions/checkout@v4
62+ - uses : actions/checkout@v6
6363
6464 - name : Use Node.js ${{ matrix.node-version }}
65- uses : actions/setup-node@v4
65+ uses : actions/setup-node@v6
6666 with :
6767 node-version : ${{ matrix.node-version }}
6868
@@ -72,15 +72,15 @@ jobs:
7272
7373 # Get RELEASE_NOTE.txt and pack it into zip.
7474 - name : Download materials
75- uses : actions/download-artifact@v4
75+ uses : actions/download-artifact@v7
7676 with :
7777 name : apache-echarts-${{env.RELEASE_VERSION}}-release-materials
7878
7979 # TODO Check release version is RC
8080
8181 # Archive before run others to avoid packing unknown files.
8282 - name : Archive source release
83- uses : actions/upload-artifact@v4
83+ uses : actions/upload-artifact@v6
8484 with :
8585 name : apache-echarts-${{env.RELEASE_VERSION}}-src
8686 path : |
@@ -114,7 +114,7 @@ jobs:
114114
115115 steps :
116116 - name : Use Node.js ${{ matrix.node-version }}
117- uses : actions/setup-node@v4
117+ uses : actions/setup-node@v6
118118 with :
119119 node-version : ${{ matrix.node-version }}
120120
@@ -123,7 +123,7 @@ jobs:
123123 echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
124124
125125 - name : Download source release
126- uses : actions/download-artifact@v4
126+ uses : actions/download-artifact@v7
127127 with :
128128 name : apache-echarts-${{env.RELEASE_VERSION}}-src
129129 path : tmp/echarts
0 commit comments