Skip to content
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
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
run: |
uv tool run --from build pyproject-build --verbose --sdist --installer uv

- uses: actions/upload-artifact@v7.0.1
- uses: actions/upload-artifact@v7
with:
name: cibw-sdist
path: dist/*.tar.gz
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
with:
fetch-depth: 0

- uses: pypa/cibuildwheel@v4.1.1
- uses: pypa/cibuildwheel@v4.2.0
with:
extras: "uv"
env:
Expand All @@ -151,7 +151,7 @@ jobs:
CIBW_DEBUG_TRACEBACK: TRUE

- name: Upload wheels
uses: actions/upload-artifact@v7.0.1
uses: actions/upload-artifact@v7
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: wheelhouse/*.whl
Expand All @@ -171,7 +171,7 @@ jobs:
contents: read

steps:
- uses: actions/download-artifact@v8.0.1
- uses: actions/download-artifact@v8
with:
# unpacks all CIBW artifacts into dist/
pattern: cibw-*
Expand All @@ -198,7 +198,7 @@ jobs:
contents: write

steps:
- uses: actions/download-artifact@v8.0.1
- uses: actions/download-artifact@v8
with:
pattern: cibw-*
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
# main): the Cloudflare deploy job below needs `docs/out` for PR builds
# too, to publish a preview.
- name: Upload docs site artifact
uses: actions/upload-artifact@v7.0.1
uses: actions/upload-artifact@v7
with:
name: docs-site
path: docs/out
Expand All @@ -116,7 +116,7 @@ jobs:
pull-requests: write
steps:
- name: Download docs site artifact
uses: actions/download-artifact@v8.0.1
uses: actions/download-artifact@v8
with:
name: docs-site
path: docs/out
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
issues: write
steps:
- name: Add labels based on issue content
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const title = context.payload.issue.title.toLowerCase();
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v7
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yml
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0

- name: Run prek for linting
uses: j178/prek-action@v2.0.6
uses: j178/prek-action@v3.0.0
env:
RUFF_OUTPUT_FORMAT: github
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/qa-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
fail_ci_if_error: true

- name: Upload coverage reports for SonarQube
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-reports
path: |
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
uv sync --no-progress --all-extras -v

- name: Download coverage reports
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: coverage-reports

Expand Down
Loading