Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/upload-artifact action to v4 #16510

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/lint-commit-message.yml
Expand Up @@ -55,17 +55,17 @@ jobs:
- name: Set PR number
run: echo $PULL_REQUEST_NUMBER > pr.txt

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: commit-lint-report
path: ./commit-lint.txt

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: commit-lint-result
path: ./lint-result.txt

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: pr-number
path: ./pr.txt
4 changes: 2 additions & 2 deletions .github/workflows/pr-docs-build.yml
Expand Up @@ -77,7 +77,7 @@ jobs:
# share website dist
- name: Upload artifact
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/.vitepress/dist/
Expand All @@ -91,7 +91,7 @@ jobs:
# share pr number
- name: Upload pr number
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pr
path: ./pr.txt
Expand Down