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
2 changes: 1 addition & 1 deletion .github/workflows/playwright-crit-flow-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: playwright-report
path: playwright-report/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright-regression-flow-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: playwright-report
path: playwright-report/
2 changes: 1 addition & 1 deletion .github/workflows/playwright-smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: playwright-report
path: playwright-report/
4 changes: 2 additions & 2 deletions .github/workflows/precommit-crit-flows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
echo "commit_url=$COMMIT_URL" >> "$GITHUB_OUTPUT"
echo "committer=$AUTHOR" >> "$GITHUB_OUTPUT"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: build-artifact
path: ${{ env.BUILD_DIR }}${{ env.BUILD_ARTIFACT }}
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: playwright-report
path: playwright-report/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Build
run: yarn build:prod

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: 'build-artifact'
path: '${{env.BUILD_DIR}}${{env.BUILD_ARTIFACT}}'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
echo -e "COMMIT SHA = ${{ github.sha }}" >> ${{env.UNIT_TEST_REPORT_FILE}}
echo -e "TEST RUN DATE = $(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> ${{env.UNIT_TEST_REPORT_FILE}}

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: 'unit-tests-report'
path: ${{env.UNIT_TEST_REPORT_FILE}}
Expand All @@ -89,7 +89,7 @@ jobs:
- name: Build
run: yarn build:prod

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: 'build-artifact'
path: '${{env.BUILD_DIR}}${{env.BUILD_ARTIFACT}}'
Expand All @@ -116,7 +116,7 @@ jobs:
yarn changelog:${{ env.changelog_type }} > ${{ env.CHANGELOG_FILE }}
echo "changelog=${{ env.CHANGELOG_FILE }}" >> $GITHUB_OUTPUT

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: ${{ env.changelog_type }}
with:
name: 'changelog'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-cells-crit-flow-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: playwright-report-${{ env.ENV }}
path: playwright-report/
Expand Down
Loading