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/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get uv version from constraints
id: uv-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
contents: read
steps:
- name: Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v5.3.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
pull-requests: read
steps:
- name: Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 2

Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
repository-url: https://test.pypi.org/legacy/

- name: Publish the release notes
uses: release-drafter/release-drafter@v6.1.0
uses: release-drafter/release-drafter@v6.2.0
with:
publish: ${{ steps.check-version.outputs.tag != '' }}
tag: ${{ steps.check-version.outputs.tag }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get uv version from constraints
id: uv-version
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
subprocess.run(cmd, shell=True)

- name: Restore pre-commit cache
uses: actions/cache@v4
uses: actions/cache@v5
if: matrix.session == 'pre-commit'
with:
path: ~/.cache/pre-commit
Expand All @@ -86,15 +86,15 @@ jobs:

- name: Upload coverage data
if: always() && matrix.session == 'tests'
uses: "actions/upload-artifact@v5"
uses: "actions/upload-artifact@v6"
with:
name: coverage-data-${{ matrix.os }}-${{ matrix.python }}
path: ".coverage.*"
include-hidden-files: true

- name: Upload documentation
if: matrix.session == 'docs-build'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: docs
path: docs/_build
Expand All @@ -104,7 +104,7 @@ jobs:
needs: tests
steps:
- name: Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand All @@ -123,7 +123,7 @@ jobs:
python-version: "3.11"

- name: Download coverage data
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: coverage-data-*
merge-multiple: true
Expand All @@ -148,4 +148,4 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# No need to run SonarCloud analysis if dependabot update or token not defined
if: env.SONAR_TOKEN != '' && (github.actor != 'dependabot[bot]')
uses: SonarSource/sonarqube-scan-action@v6.0.0
uses: SonarSource/sonarqube-scan-action@v7.0.0