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
10 changes: 5 additions & 5 deletions .github/workflows/pull_request_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
run: yarn run playwright:cmd:merge-reports --reporter html ./all-blob-reports

- name: Upload Playwright HTML report to GitHub Actions Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: playwright-report
path: playwright-report
Expand All @@ -144,7 +144,7 @@ jobs:
shell: bash

- name: Upload dist
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: package
path: out
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:

- name: Upload report
if: steps.generate-diff.outputs.has_diff == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: diff-report
path: diff/
Expand All @@ -252,7 +252,7 @@ jobs:
run: yarn docs:storybook:build

- name: Upload dist
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: storybook-dist
path: packages/vkui/storybook-static
Expand All @@ -278,7 +278,7 @@ jobs:
NEXT_PUBLIC_VKUI_DOCS_BASE_PATH: /pull/${{ github.event.pull_request.number }}/${{ github.event.pull_request.head.sha }}

- name: Upload dist
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: docs-website-dist
path: website/out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
echo ${{ inputs.override_pr_number || github.event.pull_request.number }} > pr_workflow_payload/pr_number.txt

- name: Upload
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: pr_workflow_payload
path: pr_workflow_payload/
2 changes: 1 addition & 1 deletion .github/workflows/reusable_workflow_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Upload test artifact
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-output
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_workflow_test_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Upload Playwright blob report to GitHub Actions Artifacts
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: all-blob-reports-${{ matrix.shardIndex }}-${{ matrix.shardTotal }}
path: packages/vkui/blob-report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_screens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Upload archive
if: steps.zip-screenshots.outputs.needUpload == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: screenshots-${{ matrix.shardIndex }}-${{ matrix.shardTotal }}
path: packages/vkui/screenshots-${{ matrix.shardIndex }}-${{ matrix.shardTotal }}.zip
Expand Down