Skip to content

Commit

Permalink
build(deps): 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] committed Feb 27, 2024
1 parent 0b759b1 commit 6c86d3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
# always() is required here to run this step even if the build fails
# otherwise the platform will be skipped in the test report (it should be flagged as broken)
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.platform }}
path: artifacts/build
Expand All @@ -102,7 +102,7 @@ jobs:

- name: Upload test results
if: always() && steps.init_qa.outcome == 'success'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-${{ matrix.platform }}
path: artifacts/test
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
cat summary.txt
- name: Upload test summary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: qasummary
path: summary.txt
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
cd allure-report && zip -q -r ../qareport.zip . && cd ..
- name: Upload test report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: qareport
path: qareport.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: build/ci/ci-run.py ${{ matrix.platform }} artifacts build --path artifacts/build

- name: Publish build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.platform }}
path: artifacts/build
Expand All @@ -78,7 +78,7 @@ jobs:

- name: Publish test results
if: always() && steps.init_qa.outcome == 'success'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-${{ matrix.platform }}
path: artifacts/test
Expand Down

0 comments on commit 6c86d3a

Please sign in to comment.