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
4 changes: 2 additions & 2 deletions .github/workflows/check-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Resolve comment
if: ${{ env.MISSING_CHANGELOG_ENTRY == '0' && steps.fc.outputs.comment-id != '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
query = `mutation minimizeComment {
Expand All @@ -104,7 +104,7 @@ jobs:

- name: Unresolve comment
if: ${{ env.MISSING_CHANGELOG_ENTRY == '1' && steps.fc.outputs.comment-id != '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
query = `mutation unminimizeComment {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
# Upload coverage reports to Codecov

- name: Upload coverage to codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
env:
OS: "${{ matrix.os }}"
PYTHON: "${{ matrix.python-version }}"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
requirements: tox
- name: Build source (sdist) and binary (wheel) distributions
run: tox -e build-dists
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: python-package-distributions
path: dist/
Expand All @@ -61,7 +61,7 @@ jobs:
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: python-package-distributions
path: dist/
Expand All @@ -84,7 +84,7 @@ jobs:
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: python-package-distributions
path: dist/
Expand Down Expand Up @@ -119,12 +119,12 @@ jobs:

# Sign the package distributions with Sigstore
# https://github.com/marketplace/actions/gh-action-sigstore-python
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: python-package-distributions
path: dist/
- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@v3.2.0
uses: sigstore/gh-action-sigstore-python@v3.3.0
with:
inputs: >-
./dist/*.tar.gz
Expand Down
5 changes: 5 additions & 0 deletions docs/reference/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Unreleased changes

### CI/CD

- Bump actions/download-artifact from 7 to 8 ({gh-pr}`368`)
- Bump actions/upload-artifact from 6 to 7 ({gh-pr}`369`)
- Bump sigstore/gh-action-sigstore-python from 3.2.0 to 3.3.0 ({gh-pr}`370`)
- Bump codecov/codecov-action from 5 to 6 ({gh-pr}`371`)
- Bump actions/github-script from 8 to 9 ({gh-pr}`373`)
Comment thread
tpvasconcelos marked this conversation as resolved.
- pre-commit autoupdate ({gh-pr}`374`)

---
Expand Down
Loading