Skip to content

Commit 01ae6dc

Browse files

7 files changed

+11
-11
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ jobs:
201201
run: npm run build:npm
202202

203203
- name: Upload npmDist package
204-
uses: actions/upload-artifact@v2
204+
uses: actions/upload-artifact@v4
205205
with:
206206
name: npmDist
207207
path: ./npmDist
@@ -229,7 +229,7 @@ jobs:
229229
run: npm run build:deno
230230

231231
- name: Upload denoDist package
232-
uses: actions/upload-artifact@v2
232+
uses: actions/upload-artifact@v4
233233
with:
234234
name: denoDist
235235
path: ./denoDist
@@ -256,7 +256,7 @@ jobs:
256256
run: npm run build:website
257257

258258
- name: Upload denoDist package
259-
uses: actions/upload-artifact@v2
259+
uses: actions/upload-artifact@v4
260260
with:
261261
name: websiteDist
262262
path: ./websiteDist

.github/workflows/cmd-publish-pr-on-npm.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: npm run build:npm
3232

3333
- name: Upload npmDist package
34-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: npmDist
3737
path: ./npmDist
@@ -55,7 +55,7 @@ jobs:
5555
# 'registry-url' is required for 'npm publish'
5656
registry-url: 'https://registry.npmjs.org'
5757

58-
- uses: actions/download-artifact@v2
58+
- uses: actions/download-artifact@v4
5959
with:
6060
name: npmDist
6161
path: npmDist
@@ -110,7 +110,7 @@ jobs:
110110
NODE_AUTH_TOKEN: ${{ secrets.NPM_CANARY_PR_PUBLISH_TOKEN }}
111111

112112
- name: Upload replyMessage
113-
uses: actions/upload-artifact@v2
113+
uses: actions/upload-artifact@v4
114114
with:
115115
name: replyMessage
116116
path: ./replyMessage.txt

.github/workflows/cmd-run-benchmark.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
EOF
4343
4444
- name: Upload replyMessage
45-
uses: actions/upload-artifact@v2
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: replyMessage
4848
path: ./replyMessage.txt

.github/workflows/deploy-artifact-as-branch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Remove existing files first
3030
run: git rm -r .
3131

32-
- uses: actions/download-artifact@v2
32+
- uses: actions/download-artifact@v4
3333
with:
3434
name: ${{ inputs.artifact_name }}
3535

.github/workflows/github-actions-bot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
if: needs.accept-cmd.result != 'skipped' && always()
103103
runs-on: ubuntu-latest
104104
steps:
105-
- uses: actions/download-artifact@v2
105+
- uses: actions/download-artifact@v4
106106
with:
107107
name: replyMessage
108108

.github/workflows/pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: 'node resources/diff-npm-package.js BASE HEAD'
3434

3535
- name: Upload generated report
36-
uses: actions/upload-artifact@v2
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: npm-dist-diff.html
3939
path: ./npm-dist-diff.html

.github/workflows/pull_request_opened.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Upload event.json
11-
uses: actions/upload-artifact@v2
11+
uses: actions/upload-artifact@v4
1212
with:
1313
name: event.json
1414
path: ${{ github.event_path }}

0 commit comments

Comments
 (0)