Skip to content

Commit 12c555c

Browse files
authored
Merge pull request #19697 from apache/update-workflow-deps
chore: update workflow deps
2 parents 2e010c7 + f9f3249 commit 12c555c

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Cache node modules
3838
id: cache-dep
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
env:
4141
cache-name: cache-node-modules
4242
with:
@@ -76,7 +76,7 @@ jobs:
7676

7777
- name: Cache node modules
7878
id: cache-dep
79-
uses: actions/cache@v3
79+
uses: actions/cache@v4
8080
env:
8181
cache-name: cache-node-modules
8282
with:
@@ -120,7 +120,7 @@ jobs:
120120
rm -f *.tgz
121121
echo -e "Dist files: \n$(ls -l)"
122122
123-
- uses: actions/upload-artifact@v3
123+
- uses: actions/upload-artifact@v4
124124
if: ${{ steps.save-pr-data.outcome == 'success' }}
125125
with:
126126
name: pr_preview

.github/workflows/pr-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Determine if workflow build job is successful
1515
id: check-build-success
16-
uses: actions/github-script@v6
16+
uses: actions/github-script@v7
1717
with:
1818
result-encoding: string
1919
script: |

.github/workflows/source-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
2727
2828
- name: Cache node modules
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
env:
3131
cache-name: cache-node-modules
3232
with:
@@ -44,7 +44,7 @@ jobs:
4444
--out tmp/materials
4545
4646
- name: Archive materials
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: apache-echarts-${{env.RELEASE_VERSION}}-release-materials
5050
path: |
@@ -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@v3
75+
uses: actions/download-artifact@v4
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@v3
83+
uses: actions/upload-artifact@v4
8484
with:
8585
name: apache-echarts-${{env.RELEASE_VERSION}}-src
8686
path: |
@@ -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@v3
126+
uses: actions/download-artifact@v4
127127
with:
128128
name: apache-echarts-${{env.RELEASE_VERSION}}-src
129129
path: tmp/echarts

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: ${{ github.repository_owner == 'apache' }}
1515
steps:
1616
- name: Close Stale Issues
17-
uses: actions/stale@v6
17+
uses: actions/stale@v9
1818
with:
1919
days-before-stale: 730
2020
days-before-close: 7

0 commit comments

Comments
 (0)