diff --git a/.github/workflows/missing_signals.yaml b/.github/workflows/missing_signals.yaml index 1b204edb4..a10ba422e 100644 --- a/.github/workflows/missing_signals.yaml +++ b/.github/workflows/missing_signals.yaml @@ -21,7 +21,7 @@ jobs: run: python scripts/report_missing_covidcast_meta.py - name: Upload Missing Artifact if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: missing_db_signals.csv path: missing_db_signals.csv diff --git a/.github/workflows/performance-tests-one-time.yml b/.github/workflows/performance-tests-one-time.yml index effda8e8c..c924e206e 100644 --- a/.github/workflows/performance-tests-one-time.yml +++ b/.github/workflows/performance-tests-one-time.yml @@ -101,7 +101,7 @@ jobs: write_float('requests_per_sec', final_line[9]) - name: Archive results as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: locust-output path: | diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index be87de13f..910bde1ca 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -109,7 +109,7 @@ jobs: write_float('requests_per_sec', final_line[9]) - name: Archive results as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: locust-output path: | diff --git a/.github/workflows/release-helper.yml b/.github/workflows/release-helper.yml index bc87d3b0e..164a0485b 100644 --- a/.github/workflows/release-helper.yml +++ b/.github/workflows/release-helper.yml @@ -89,7 +89,7 @@ jobs: working-directory: src/client/packaging/pypi run: | python -m build --sdist --wheel - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: delphi_epidata_py path: src/client/packaging/pypi/dist/*.tar.gz @@ -132,7 +132,7 @@ jobs: - run: npm pack - name: Rename to a different name run: for f in *.tgz; do mv "$f" "$(echo "$f" | sed s/delphi_epidata-/delphi_epidata_js-/)"; done - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: delphi_epidata_js path: src/client/packaging/npm/*.tgz