Skip to content
Merged
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/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,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 @@ -81,15 +81,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 @@ -109,7 +109,7 @@ jobs:
enable-cache: true

- name: Download coverage data
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: coverage-data-*
merge-multiple: true
Expand All @@ -134,4 +134,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