Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo "Latest tag: $tag"

- name: Checkout repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Build gromacs image
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
- run: pip install tox
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
- run: pip install tox
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
- run: python -m pip install tox
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -22,7 +22,7 @@ jobs:
sudo apt-get install -y gromacs

- name: setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
check-latest: true
Expand All @@ -36,12 +36,12 @@ jobs:
tests-develop:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

- name: setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
check-latest: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ jobs:
- os: ubuntu-24.04
python-version: "3.13"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
check-latest: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests-min.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
- os: windows-2025
python-version: "3.13"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
check-latest: true
Expand All @@ -61,7 +61,7 @@ jobs:
run: coverage xml

- name: upload to codecov.io
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: true
files: tests/coverage.xml
Expand Down
Loading