Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Sep 14, 2024
1 parent 5213e68 commit 01ae6dc
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
run: npm run build:npm

- name: Upload npmDist package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: npmDist
path: ./npmDist
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
run: npm run build:deno

- name: Upload denoDist package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: denoDist
path: ./denoDist
Expand All @@ -256,7 +256,7 @@ jobs:
run: npm run build:website

- name: Upload denoDist package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: websiteDist
path: ./websiteDist
6 changes: 3 additions & 3 deletions .github/workflows/cmd-publish-pr-on-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: npm run build:npm

- name: Upload npmDist package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: npmDist
path: ./npmDist
Expand All @@ -55,7 +55,7 @@ jobs:
# 'registry-url' is required for 'npm publish'
registry-url: 'https://registry.npmjs.org'

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: npmDist
path: npmDist
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_CANARY_PR_PUBLISH_TOKEN }}

- name: Upload replyMessage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: replyMessage
path: ./replyMessage.txt
2 changes: 1 addition & 1 deletion .github/workflows/cmd-run-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
EOF
- name: Upload replyMessage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: replyMessage
path: ./replyMessage.txt
2 changes: 1 addition & 1 deletion .github/workflows/deploy-artifact-as-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Remove existing files first
run: git rm -r .

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact_name }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
if: needs.accept-cmd.result != 'skipped' && always()
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: replyMessage

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: 'node resources/diff-npm-package.js BASE HEAD'

- name: Upload generated report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: npm-dist-diff.html
path: ./npm-dist-diff.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_opened.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload event.json
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: event.json
path: ${{ github.event_path }}

0 comments on commit 01ae6dc

Please sign in to comment.