Skip to content

Commit

Permalink
Upgrade upload artifact version
Browse files Browse the repository at this point in the history
  • Loading branch information
kbonney authored Sep 23, 2024
1 parent 83d4c91 commit 1e47f0f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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*
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 1e47f0f

Please sign in to comment.