Skip to content

Commit

Permalink
chore(gha): bump actions/upload-artifact from 3 to 4
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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 17, 2024
1 parent 9d78e11 commit 5000824
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: npm run test:unit ${{ matrix.os.coverage }}
- name: Upload unit test results
if: ${{ failure() && steps.test_unit.outcome == 'failure' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: unit-test-results-${{matrix.os.name}}-${{github.sha}}
path: build/test-report/unit
Expand All @@ -92,7 +92,7 @@ jobs:
run: npm run test:integration ${{ matrix.os.coverage }}
- name: Upload integration test results
if: ${{ failure() && steps.test_integration.outcome == 'failure' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: integration-test-results-${{matrix.os.name}}-${{github.sha}}
path: build/test-report/integration
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: npm run test:e2e:verbose
- name: Upload e2e test results
if: ${{ failure() && steps.test_e2e.outcome == 'failure' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: e2e-${{matrix.browser}}-test-results-${{matrix.os}}-${{github.sha}}
path: build/test-report/e2e
4 changes: 2 additions & 2 deletions .github/workflows/test-npm-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Build npm package
run: npm pack
- name: Upload npm package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bpmn-visualization-npm-package-${{github.sha}}
path: bpmn-visualization-*.tgz
Expand All @@ -67,7 +67,7 @@ jobs:
run: npm run test:bundles:verbose
- name: Upload bundles test results
if: ${{ failure() && steps.test_bundles.outcome == 'failure' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bundles-test-results-${{github.sha}}
path: build/test-report/bundles
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: npm run test:perf
- name: Upload test results
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: perf-test-results-${{matrix.os}}-${{github.sha}}
path: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set ARTIFACT_NAME
run: echo "ARTIFACT_NAME=demo-${{github.sha}}" >> $GITHUB_ENV
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: build/demo/dev/public
Expand Down

0 comments on commit 5000824

Please sign in to comment.