diff --git a/.github/workflows/create_tests_package_lists.yml b/.github/workflows/create_tests_package_lists.yml index 8e4edf341d..b294a6c3e4 100644 --- a/.github/workflows/create_tests_package_lists.yml +++ b/.github/workflows/create_tests_package_lists.yml @@ -30,7 +30,7 @@ jobs: run: nox --non-interactive --session create_test_package_list-${{ matrix.python-version }} -- ./new_tests_packages - name: Store reports as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: lists path: ./new_tests_packages diff --git a/.github/workflows/exhaustive_package_test.yml b/.github/workflows/exhaustive_package_test.yml index 0f4318cab0..fb3e491d9f 100644 --- a/.github/workflows/exhaustive_package_test.yml +++ b/.github/workflows/exhaustive_package_test.yml @@ -27,7 +27,7 @@ jobs: continue-on-error: true run: nox --non-interactive --session test_all_packages-${{ matrix.python-version }} - name: Store reports as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: reports-raw path: reports @@ -57,7 +57,7 @@ jobs: cat all_packages_deps_errors_* > all_deps_errors_lf.txt tr -d '\r' < all_deps_errors_lf.txt > reports/all_deps_errors.txt - name: Store collated and raw reports as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: reports-final path: reports diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c4a5e3ec33..89689d96d7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -77,7 +77,7 @@ jobs: run: nox --error-on-missing-interpreters --non-interactive --session zipapp - name: Test zipapp by installing black run: python ./pipx.pyz install black - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: pipx.pyz path: pipx.pyz