Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.os.runs-on }}
steps:
- name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
# Get enough history for the tags we get next to be meaningful. 0
# means all history.
Expand All @@ -27,7 +27,7 @@ jobs:
ref: "${{ github.event.pull_request.head.sha || github.sha }}"

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ${{ matrix.os.runs-on }}
steps:
- name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
# Get enough history for the tags we get next to be meaningful. 0
# means all history.
Expand All @@ -31,7 +31,7 @@ jobs:
ref: "${{ github.event.pull_request.head.sha || github.sha }}"

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ${{ matrix.os.runs-on }}
steps:
- name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
# Get enough history for the tags we get next to be meaningful. 0
# means all history.
Expand All @@ -31,7 +31,7 @@ jobs:
ref: "${{ github.event.pull_request.head.sha || github.sha }}"

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -64,4 +64,4 @@ jobs:
coverage lcov

- name: Coveralls.io
uses: actions/setup-python@v2
uses: actions/setup-python@v6
1 change: 1 addition & 0 deletions docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -279,3 +279,4 @@ See ``NEWS.rst`` for specific release information.
- `meejah <https://meejah.ca>`_: main development
- `shapr <https://www.scannedinavian.com/>`_: much feedback, pairing and feature development
- `balejk <https://github.com/balejk>`_: early feedback, proof-reading, review and testing

Loading