Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#3576)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Jul 25, 2024
1 parent 62567cc commit 4b3c223
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
echo "${{ github.event.number }}" > .PR_NUMBER
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: benchmark-core
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark-ssr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
echo "${{ github.event.number }}" > .PR_NUMBER
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: benchmark-ssr
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
EVENT_INFO: ${{ toJSON(github.event) }}

- name: Upload result artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: results
path: artifacts/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-api-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
cp -r target/doc/* api-docs/dist/next
- name: Upload build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: api-docs
path: api-docs/
Expand All @@ -59,7 +59,7 @@ jobs:
- if: github.event_name == 'pull_request'
name: Upload pr info
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pr-info
path: "${{ env.PR_INFO_FILE }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: website
path: website/build/
Expand All @@ -61,7 +61,7 @@ jobs:
- if: github.event_name == 'pull_request'
name: Upload pr info
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pr-info
path: "${{ env.PR_INFO_FILE }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/size-cmp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
ISSUE_NUMBER: ${{ github.event.number }}

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: size-cmp-${{ matrix.target }}-info
path: ".SIZE_CMP_INFO"
Expand Down

0 comments on commit 4b3c223

Please sign in to comment.