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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:

steps:
- name: "Check out the repo"
uses: "actions/checkout@v4"
uses: "actions/checkout@v5"

- name: "Set up Python"
uses: "actions/setup-python@v5"
uses: "actions/setup-python@v6"
with:
python-version: "${{ matrix.python-version }}"
cache: pip
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:

- name: "Upload HTML coverage report"
if: (matrix.python-version == '3.10') && (matrix.os == 'ubuntu-latest')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: htmlcov
path: htmlcov/
Expand All @@ -83,10 +83,10 @@ jobs:
if: github.event_name != 'pull_request' || github.event.action != 'closed'
steps:
- name: "Check out the repo"
uses: "actions/checkout@v4"
uses: "actions/checkout@v5"

- name: "Set up Python"
uses: "actions/setup-python@v5"
uses: "actions/setup-python@v6"
with:
python-version: "3.10"
cache: pip
Expand All @@ -106,7 +106,7 @@ jobs:
needs: docs-build
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Lint markdown pages
uses: nosborn/github-action-markdown-cli@v3
Expand All @@ -123,7 +123,7 @@ jobs:
needs: docs-build
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Check markdown pages for broken links
uses: gaurav-nelson/github-action-markdown-link-check@v1
Expand All @@ -139,21 +139,21 @@ jobs:
needs: [tests, markdownlint, markdown-link-check]
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# checkout all commits to get accurate page revision times
# for the git-revision-date-localized plugin
fetch-depth: '0'

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
cache: pip
cache-dependency-path: '**/requirements/docs.txt'

- name: Download HTML coverage report
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: htmlcov
path: htmlcov
Expand Down Expand Up @@ -181,13 +181,13 @@ jobs:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# checkout all commits and branches to get gh-pages
fetch-depth: '0'

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
cache: pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install build dependencies
Expand Down