Skip to content

Commit

Permalink
Removing minor version specification from actions to solve compatibil…
Browse files Browse the repository at this point in the history
…ity issues
  • Loading branch information
kbonney authored Sep 23, 2024
1 parent 1e47f0f commit e26dd64
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 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@v4.4.0
uses: actions/upload-artifact@v4
with:
name: wntr_${{ matrix.python-version }}_${{ matrix.os }}.whl
path: dist/wntr*
Expand All @@ -56,7 +56,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Download wheel
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: wntr_${{ matrix.python-version }}_${{ matrix.os }}.whl
- name: Install 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@v4.4.0
uses: actions/upload-artifact@v4
with:
name: coverage
path: .coverage.${{ matrix.python-version }}.${{ matrix.os }}
Expand All @@ -117,7 +117,7 @@ jobs:
python -m pip install -e .
# pip install coveralls
- name: Download coverage artifacts from test matrix
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: coverage
- name: Setup coverage and combine reports
Expand All @@ -136,12 +136,12 @@ jobs:
coverage json --pretty-print
coverage html --show-contexts
- name: Save coverage JSON
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage.json
- name: Save coverage html
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4
with:
name: coverage
path: htmlcov
Expand All @@ -163,7 +163,7 @@ jobs:
pip install -r requirements.txt
python -m pip install -e .
- name: Download coverage artifacts from test matrix
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: coverage
- name: Setup coverage and combine reports
Expand Down

0 comments on commit e26dd64

Please sign in to comment.