Skip to content

Commit

Permalink
Merge pull request #200 from bio-phys/fix-download-vulnerability
Browse files Browse the repository at this point in the history
Fix vulnerability in download action.
  • Loading branch information
jkoefinger authored Sep 5, 2024
2 parents ab9009a + 53ac7d7 commit 752a1b4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pip install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install poetry
run: pip install poetry
- name: Install mdbenchmark
run: poetry install --extras docs
- name: Check reformat
Expand All @@ -43,6 +42,8 @@ jobs:
run: poetry run pytest -v --cov=mdbenchmark --cov-report=xml
- name: Upload coverage
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
env_vars: PYTHON
fail_ci_if_error: true
Expand Down Expand Up @@ -77,7 +78,7 @@ jobs:
- name: Update pip
run: pip install --upgrade pip
- name: Download build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dists.${{ matrix.python-version }}
path: dist
Expand Down

0 comments on commit 752a1b4

Please sign in to comment.