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
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout project
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install build dependencies
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Package the project
run: python -m build
- name: Produce a GitHub actions artifact (the package)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release-dist
path: dist/
Expand All @@ -47,7 +47,7 @@ jobs:
id-token: write # This permission is mandatory for trusted publishing
steps:
- name: Retrieve the package from GitHub actions artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: release-dist
path: dist
Expand All @@ -63,7 +63,7 @@ jobs:
contents: write # IMPORTANT: mandatory for making GitHub Releases
steps:
- name: Retrieve the package from GitHub actions artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: release-dist
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout project
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Run pre-commit
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].2
with:
pixi-version: v0.56.0
environments: ${{ matrix.pixi_environment }}
Expand All @@ -35,7 +35,7 @@ jobs:
env:
COVERAGE_FILE: ".coverage.${{ matrix.pixi_environment }}-${{ matrix.os }}"
- name: Store coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
# File renamed for this matrix element
name: coverage-${{ matrix.pixi_environment }}-${{ matrix.os }}
Expand All @@ -56,9 +56,9 @@ jobs:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Retrieve coverage artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
id: download
with:
pattern: coverage-*
Expand All @@ -70,7 +70,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
MERGE_COVERAGE_FILES: true
- name: Store Pull Request comment to be posted
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
with:
name: python-coverage-comment-action
Expand All @@ -80,11 +80,11 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].2
with:
pixi-version: v0.56.0
environments: doc
Expand All @@ -98,11 +98,11 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout project
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install build dependencies
Expand All @@ -114,7 +114,7 @@ jobs:
- name: Try installing from the new dists
run: pip install dist/*.whl
- name: Produce a GitHub actions artifact (the distributable package)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist
path: dist/
Expand Down
Loading