Skip to content

Commit bfb387f

Browse files
Merge pull request #384 from tpvasconcelos/consolidate-bot-prs-379-383
Consolidate bot PRs #379-#383 and fix pytest incompatibility blocking their CI
2 parents 658306c + 7921942 commit bfb387f

6 files changed

Lines changed: 18 additions & 12 deletions

File tree

.github/workflows/check-release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
timeout-minutes: 1
2424
steps:
25-
- uses: actions/checkout@v6
25+
- uses: actions/checkout@v7
2626

2727
- name: Default MISSING_CHANGELOG_ENTRY to 1
2828
run: echo 'MISSING_CHANGELOG_ENTRY=1' >> "$GITHUB_ENV"

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
timeout-minutes: 6
2424
steps:
25-
- uses: actions/checkout@v6
25+
- uses: actions/checkout@v7
2626
- uses: ./.github/actions/setup-python
2727
with:
2828
python-version: "3.10"
@@ -68,7 +68,7 @@ jobs:
6868
DIFF_AGAINST: HEAD
6969
timeout-minutes: 8
7070
steps:
71-
- uses: actions/checkout@v6
71+
- uses: actions/checkout@v7
7272
with:
7373
# TODO: This can be very expensive for large repos. Is there a better way to do this?
7474
# Fetch all history and tags for setuptools_scm to work
@@ -104,7 +104,7 @@ jobs:
104104
# Upload coverage reports to Codecov
105105

106106
- name: Upload coverage to codecov
107-
uses: codecov/codecov-action@v6
107+
uses: codecov/codecov-action@v7
108108
env:
109109
OS: "${{ matrix.os }}"
110110
PYTHON: "${{ matrix.python-version }}"

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# actions: read
3030
# contents: read
3131
steps:
32-
- uses: actions/checkout@v6
32+
- uses: actions/checkout@v7
3333

3434
- uses: github/codeql-action/init@v4
3535
with:

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
timeout-minutes: 6
3434
steps:
35-
- uses: actions/checkout@v6
35+
- uses: actions/checkout@v7
3636
with:
3737
# TODO: This can be very expensive for large repos. Is there a better way to do this?
3838
# Fetch all history and tags for setuptools_scm to work
@@ -105,7 +105,7 @@ jobs:
105105
steps:
106106

107107
# Generate the release notes
108-
- uses: actions/checkout@v6
108+
- uses: actions/checkout@v7
109109
with:
110110
# TODO: This can be very expensive for large repos. Is there a better way to do this?
111111
# Fetch all history and tags for setuptools_scm to work
@@ -124,14 +124,14 @@ jobs:
124124
name: python-package-distributions
125125
path: dist/
126126
- name: Sign the dists with Sigstore
127-
uses: sigstore/gh-action-sigstore-python@v3.3.0
127+
uses: sigstore/gh-action-sigstore-python@v3.4.0
128128
with:
129129
inputs: >-
130130
./dist/*.tar.gz
131131
./dist/*.whl
132132
133133
- name: Create GitHub Release
134-
uses: softprops/action-gh-release@v2
134+
uses: softprops/action-gh-release@v3
135135
with:
136136
body_path: LATEST_RELEASE_NOTES.md
137137
# `dist/` contains the built distributions, and the

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ repos:
4343
exclude: ^\.bumpversion\.cfg$
4444

4545
- repo: https://github.com/python-jsonschema/check-jsonschema.git
46-
rev: 0.37.2
46+
rev: 0.37.4
4747
hooks:
4848
- id: check-github-actions
4949
- id: check-github-workflows
@@ -65,7 +65,7 @@ repos:
6565
- id: nbstripout
6666

6767
- repo: https://github.com/codespell-project/codespell
68-
rev: v2.4.2
68+
rev: v2.4.3
6969
hooks:
7070
- id: codespell
7171
args: [ "-L", "probly", "-L", "mis" ]
@@ -104,7 +104,7 @@ repos:
104104
additional_dependencies: [setuptools-scm]
105105

106106
- repo: https://github.com/astral-sh/ruff-pre-commit
107-
rev: v0.15.13
107+
rev: v0.15.22
108108
hooks:
109109
- id: ruff-format
110110
- id: ruff

docs/reference/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ Unreleased changes
1616
- Bump codecov/codecov-action from 5 to 6 ({gh-pr}`371`)
1717
- Bump actions/github-script from 8 to 9 ({gh-pr}`373`)
1818
- pre-commit autoupdate ({gh-pr}`374`)
19+
- Bump softprops/action-gh-release from 2 to 3 ({gh-pr}`380`)
20+
- Bump codecov/codecov-action from 6 to 7 ({gh-pr}`381`)
21+
- Bump sigstore/gh-action-sigstore-python from 3.3.0 to 3.4.0 ({gh-pr}`382`)
22+
- Bump actions/checkout from 6 to 7 ({gh-pr}`383`)
23+
- pre-commit autoupdate ({gh-pr}`379`)
24+
- Fix the test suite's compatibility with the latest pytest release ({gh-pr}`384`)
1925
- Use the official `astral-sh/setup-uv` action to install and cache `uv` in CI ({gh-pr}`386`)
2026

2127
---

0 commit comments

Comments
 (0)