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/js-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
- name: Run frontend tests
run: make frontend-tests
- name: Upload coverage json-summary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: vitest_coverage_json
path: frontend/coverage/coverage-summary.json
- name: Upload coverage HTML report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: vitest_coverage_html
path: frontend/coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
sudo apt install rsync
make package
- name: Store Whl File
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: whl_file
path: lib/dist/*.whl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ jobs:
- name: Set MY_DATE_TIME env var
run: echo "MY_DATE_TIME=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV
- name: Upload failed test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: playwright_test_results_${{ steps.short_sha.outputs.sha_short }}
path: e2e_playwright/test-results
- name: Upload Performance results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: performance_results_${{ env.MY_DATE_TIME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playwright-changed-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,13 @@ jobs:
rm -rf ./test-results
pytest ${{ steps.changed-files.outputs.all_changed_files }} --browser webkit --browser chromium --browser firefox --tracing retain-on-failure -n auto --reruns 0 --cov=streamlit --cov-config=.coveragerc --cov-report=html
- name: Upload failed test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: playwright_test_results_${{ steps.short_sha.outputs.sha_short }}
path: e2e_playwright/test-results
- name: Upload coverage HTML report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage_report_e2e
path: e2e_playwright/htmlcov
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright-custom-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
rm -rf ./test-results
pytest ./custom_components --browser webkit --browser chromium --browser firefox -n auto --reruns 1
- name: Upload failed test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: playwright_test_results_${{ steps.short_sha.outputs.sha_short }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
rm -rf ./test-results
pytest --ignore ./custom_components --browser webkit --browser chromium --browser firefox -n auto --reruns 1 -m "not performance"
- name: Upload failed test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: playwright_test_results_${{ steps.short_sha.outputs.sha_short }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
exit 1
fi
- name: Store Whl File
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: whl_file
path: lib/dist/*.whl
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:
echo "package-built=true" >> $GITHUB_OUTPUT

- name: Store npm package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: component-v2-lib-package
path: frontend/component-v2-lib/*.tgz
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
- name: CLI Smoke Tests
run: make cli-smoke-tests
- name: Upload coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage_data_${{ matrix.python_version }}
path: lib/${{ env.COVERAGE_FILE }}
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
SNOWFLAKE_ACCOUNT: ${{ secrets.SNOWFLAKE_ACCOUNT }}
SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }}
- name: Upload coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage_data_integration
path: lib/${{ env.COVERAGE_FILE }}
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
echo "min constraints file is up to date."
fi
- name: Upload coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage_data_min_deps
path: lib/${{ env.COVERAGE_FILE }}
Expand Down Expand Up @@ -274,18 +274,18 @@ jobs:
working-directory: lib

- name: Upload combined coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: combined_coverage_data
path: lib/.coverage
include-hidden-files: true
- name: Upload combined coverage JSON
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: combined_coverage_json
path: lib/coverage.json
- name: Upload combined coverage HTML report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: combined_coverage_report
path: lib/htmlcov
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
sudo apt install rsync
make package
- name: Store Package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Release
path: lib/dist
Expand Down