Skip to content

Commit 6f0d138

Browse files
authored
Merge pull request #2385 from performancecopilot/dependabot/github_actions/actions/upload-artifact-5
build(deps): bump actions/upload-artifact from 4 to 5
2 parents 89e027e + 058dbf0 commit 6f0d138

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
# always() is required here to run this step even if the build fails
7878
# otherwise the platform will be skipped in the test report (it should be flagged as broken)
7979
if: always()
80-
uses: actions/upload-artifact@v4
80+
uses: actions/upload-artifact@v5
8181
with:
8282
name: build-${{ matrix.platform }}
8383
path: artifacts/build
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Upload test results
101101
if: always() && steps.init_qa.outcome == 'success'
102-
uses: actions/upload-artifact@v4
102+
uses: actions/upload-artifact@v5
103103
with:
104104
name: test-${{ matrix.platform }}
105105
path: artifacts/test

.github/workflows/qa.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
# always() is required here to run this step even if the build fails
7979
# otherwise the platform will be skipped in the test report (it should be flagged as broken)
8080
if: always()
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v5
8282
with:
8383
name: build-${{ matrix.platform }}
8484
path: artifacts/build
@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: Upload test results
104104
if: always() && steps.init_qa.outcome == 'success'
105-
uses: actions/upload-artifact@v4
105+
uses: actions/upload-artifact@v5
106106
with:
107107
name: test-${{ matrix.platform }}
108108
path: artifacts/test
@@ -155,7 +155,7 @@ jobs:
155155
cat summary.txt
156156
157157
- name: Upload test summary
158-
uses: actions/upload-artifact@v4
158+
uses: actions/upload-artifact@v5
159159
with:
160160
name: qasummary
161161
path: summary.txt
@@ -201,7 +201,7 @@ jobs:
201201
cd allure-report && zip -q -r ../qareport.zip . && cd ..
202202
203203
- name: Upload test report
204-
uses: actions/upload-artifact@v4
204+
uses: actions/upload-artifact@v5
205205
with:
206206
name: qareport
207207
path: qareport.zip

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: build/ci/ci-run.py ${{ matrix.platform }} artifacts build --path artifacts/build
6363

6464
- name: Publish build artifacts
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v5
6666
with:
6767
name: build-${{ matrix.platform }}
6868
path: artifacts/build
@@ -84,7 +84,7 @@ jobs:
8484

8585
- name: Publish test results
8686
if: always() && steps.init_qa.outcome == 'success'
87-
uses: actions/upload-artifact@v4
87+
uses: actions/upload-artifact@v5
8888
with:
8989
name: test-${{ matrix.platform }}
9090
path: artifacts/test

0 commit comments

Comments
 (0)