Skip to content

Commit 7f66624

Browse files
chore(deps): bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 02cc100 commit 7f66624

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/playwright-crit-flow-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Upload test report
4242
if: always()
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
with:
4545
name: playwright-report
4646
path: playwright-report/

.github/workflows/playwright-regression-flow-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Upload test report
4343
if: always()
44-
uses: actions/upload-artifact@v4
44+
uses: actions/upload-artifact@v5
4545
with:
4646
name: playwright-report
4747
path: playwright-report/

.github/workflows/playwright-smoke-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Upload test report
4040
if: always()
41-
uses: actions/upload-artifact@v4
41+
uses: actions/upload-artifact@v5
4242
with:
4343
name: playwright-report
4444
path: playwright-report/

.github/workflows/precommit-crit-flows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
echo "commit_url=$COMMIT_URL" >> "$GITHUB_OUTPUT"
5656
echo "committer=$AUTHOR" >> "$GITHUB_OUTPUT"
5757
58-
- uses: actions/upload-artifact@v4
58+
- uses: actions/upload-artifact@v5
5959
with:
6060
name: build-artifact
6161
path: ${{ env.BUILD_DIR }}${{ env.BUILD_ARTIFACT }}
@@ -165,7 +165,7 @@ jobs:
165165

166166
- name: Upload test report
167167
if: always()
168-
uses: actions/upload-artifact@v4
168+
uses: actions/upload-artifact@v5
169169
with:
170170
name: playwright-report
171171
path: playwright-report/

.github/workflows/precommit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Build
4949
run: yarn build:prod
5050

51-
- uses: actions/upload-artifact@v4
51+
- uses: actions/upload-artifact@v5
5252
with:
5353
name: 'build-artifact'
5454
path: '${{env.BUILD_DIR}}${{env.BUILD_ARTIFACT}}'

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
echo -e "COMMIT SHA = ${{ github.sha }}" >> ${{env.UNIT_TEST_REPORT_FILE}}
7373
echo -e "TEST RUN DATE = $(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> ${{env.UNIT_TEST_REPORT_FILE}}
7474
75-
- uses: actions/upload-artifact@v4
75+
- uses: actions/upload-artifact@v5
7676
with:
7777
name: 'unit-tests-report'
7878
path: ${{env.UNIT_TEST_REPORT_FILE}}
@@ -89,7 +89,7 @@ jobs:
8989
- name: Build
9090
run: yarn build:prod
9191

92-
- uses: actions/upload-artifact@v4
92+
- uses: actions/upload-artifact@v5
9393
with:
9494
name: 'build-artifact'
9595
path: '${{env.BUILD_DIR}}${{env.BUILD_ARTIFACT}}'
@@ -116,7 +116,7 @@ jobs:
116116
yarn changelog:${{ env.changelog_type }} > ${{ env.CHANGELOG_FILE }}
117117
echo "changelog=${{ env.CHANGELOG_FILE }}" >> $GITHUB_OUTPUT
118118
119-
- uses: actions/upload-artifact@v4
119+
- uses: actions/upload-artifact@v5
120120
if: ${{ env.changelog_type }}
121121
with:
122122
name: 'changelog'

.github/workflows/run-cells-crit-flow-e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Upload test report
5252
if: always()
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v5
5454
with:
5555
name: playwright-report-${{ env.ENV }}
5656
path: playwright-report/

0 commit comments

Comments
 (0)