Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,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@v6
uses: actions/upload-artifact@v7
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@v6
uses: actions/upload-artifact@v7
with:
name: test-${{ matrix.platform }}
path: artifacts/test
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,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@v6
uses: actions/upload-artifact@v7
with:
name: build-${{ matrix.platform }}
path: artifacts/build
Expand All @@ -150,7 +150,7 @@ jobs:

- name: Upload test results
if: always() && steps.init_qa.outcome == 'success'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-${{ matrix.platform }}
path: artifacts/test
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
cat summary.txt

- name: Upload test summary
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: qasummary
path: summary.txt
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
cd allure-report && zip -q -r ../qareport.zip . && cd ..

- name: Upload test report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
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 @@ -65,7 +65,7 @@ jobs:
run: build/ci/ci-run.py ${{ matrix.platform }} artifacts build --path artifacts/build

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

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