Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.
Merged
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/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5.0.0
- name: Set up Python
uses: actions/setup-python@v5.6.0
uses: actions/setup-python@v6.0.0
with:
python-version: '3.11'
- name: Install dependencies
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:


- name: Checkout the repo
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.6.0
uses: actions/setup-python@v6.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down Expand Up @@ -113,12 +113,12 @@ jobs:
needs: tests # Ensure this job runs after all matrix jobs complete
steps:
# switch to badges branches to commit
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5.0.0
with:
ref: badges

- name: Download badges
uses: actions/download-artifact@v4.3.0
uses: actions/download-artifact@v5.0.0

- name: Reorganize badges
run: |
Expand All @@ -137,7 +137,7 @@ jobs:
git commit --allow-empty -m "Add/Update badge"

- name: Push badges
uses: ad-m/github-push-action@v0.8.0
uses: ad-m/github-push-action@v1.0.0
if: ${{ success() }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -148,10 +148,10 @@ jobs:

steps:
- name: Checkout the repo
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0

- name: Download all coverage artifacts
uses: actions/download-artifact@v4.3.0
uses: actions/download-artifact@v5.0.0
with:
path: ./coverage-reports

Expand All @@ -172,7 +172,7 @@ jobs:
coverage xml -i

- name: Upload combined coverage report to Codecov
uses: codecov/codecov-action@v5.4.3
uses: codecov/codecov-action@v5.5.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
2 changes: 1 addition & 1 deletion .github/workflows/updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5.0.0
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}
Expand Down