From 1e47f0f98421ab582371f93eb52a14e544233a68 Mon Sep 17 00:00:00 2001 From: Kirk Bonney <47759761+kbonney@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:28:44 -0400 Subject: [PATCH] Upgrade upload artifact version --- .github/workflows/build_tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml index bd1f67d7..eac7ca96 100644 --- a/.github/workflows/build_tests.yml +++ b/.github/workflows/build_tests.yml @@ -37,7 +37,7 @@ jobs: python setup.py bdist_wheel ls dist/* - name: Save wheel - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4.4.0 with: name: wntr_${{ matrix.python-version }}_${{ matrix.os }}.whl path: dist/wntr* @@ -96,7 +96,7 @@ jobs: COVERAGE_FILE: .coverage.${{ matrix.python-version }}.${{ matrix.os }} - name: Save coverage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4.4.0 with: name: coverage path: .coverage.${{ matrix.python-version }}.${{ matrix.os }} @@ -136,12 +136,12 @@ jobs: coverage json --pretty-print coverage html --show-contexts - name: Save coverage JSON - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4.4.0 with: name: coverage path: coverage.json - name: Save coverage html - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4.4.0 with: name: coverage path: htmlcov