Skip to content

Commit 634729e

Browse files
Merge branch 'main' into add-python-3-14-support
2 parents 5c37088 + e50b4f9 commit 634729e

File tree

118 files changed

+3074
-1816
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+3074
-1816
lines changed

.github/ISSUE_TEMPLATE/01-feature_request.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Feature request
22
description: Suggest a new feature, or enhancement to an existing feature.
3-
labels: ['enhancement', 'needs-triage']
3+
labels: ['needs-triage']
4+
type: feature
45

56
body:
67
- type: textarea

.github/ISSUE_TEMPLATE/02-bug_report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Bug Report
22
description: Create a report to help us reproduce and correct the bug
3-
labels: ['bug', 'needs-triage']
3+
labels: ['needs-triage']
4+
type: bug
45

56
body:
67
- type: markdown

.github/ISSUE_TEMPLATE/03-doc_improvement.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Documentation improvement
22
description: Create a report to help us improve the documentation. Alternatively you can just open a pull request with the suggested change.
33
labels: ['documentation', 'needs-triage']
4+
type: task
45

56
body:
67
- type: textarea

.github/dependabot.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
version: 2
22
updates:
3-
43
- package-ecosystem: "github-actions"
54
directory: "/"
65
schedule:
76
interval: "monthly"
7+
cooldown:
8+
default-days: 14
89
commit-message:
910
prefix: "chore(dependencies): GITHUB-ACTIONS"
10-
1111
- package-ecosystem: "pip"
1212
directory: "/"
1313
schedule:
1414
interval: "weekly"
15+
cooldown:
16+
default-days: 14
17+
semver-patch-days: 7
1518
commit-message:
1619
prefix: "chore(dependencies): PIP"
1720
groups:

.github/workflows/pr-display-code-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Download coverage reports
3333
id: download-coverage-reports
3434
continue-on-error: True
35-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
35+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
3636
with:
3737
name: ${{ matrix.package }}-coverage
3838
path: coverage/
@@ -46,7 +46,7 @@ jobs:
4646

4747
- name: Display coverage reports
4848
if: ${{ steps.download-coverage-reports.outcome == 'success' }}
49-
uses: MishaKav/pytest-coverage-comment@1bdbba85fb74a2fdc1ec66383acec1091610f82b # v1.1.57
49+
uses: MishaKav/pytest-coverage-comment@ae0e8a539a3f310aefb3bfb6a2209778a21fa42b # v1.2.0
5050
with:
5151
issue-number: ${{ steps.acquire-pr-context.outputs.pr-number }}
5252
pytest-xml-coverage-path: coverage/pytest-coverage.xml

.github/workflows/pr-lint-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
if: ${{ github.event_name == 'pull_request' }}
1616
steps:
17-
- uses: actions/setup-node@v5
17+
- uses: actions/setup-node@v6
1818
with:
1919
node-version: "20"
2020
- name: Install commitlint

.github/workflows/pr-serve-documentation-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Download HTML artifacts
2929
id: download-html-artifacts
3030
continue-on-error: True
31-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
31+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
3232
with:
3333
name: sphinx-html-artifact
3434
path: html/

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ jobs:
242242

243243
- name: Upload coverage reports
244244
if: ${{ matrix.coverage && (github.event_name == 'pull_request') }}
245-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
245+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
246246
with:
247247
name: ${{ matrix.package }}-coverage
248248
path: ${{ matrix.package }}/coverage/

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
python -m twine check dist/*
7474
7575
- name: Upload package distributions
76-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
76+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
7777
with:
7878
name: ${{ env.UUID }}
7979
path: ${{ needs.tag-decomposition.outputs.package }}/dist/
@@ -87,7 +87,7 @@ jobs:
8787
needs: [tag-decomposition, build]
8888
steps:
8989
- name: Download package distributions
90-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
90+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
9191
with:
9292
name: ${{ env.UUID }}
9393
path: dist/

.github/workflows/sphinx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
SPHINX_VERSION: ${{ needs.sphinx-version.outputs.SPHINX_VERSION }}
130130
SPHINX_RELEASE: ${{ needs.sphinx-version.outputs.SPHINX_RELEASE }}
131131
SPHINX_DOMAIN: ${{ vars.DOCUMENTATION_DOMAIN }}
132-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
132+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
133133
with:
134134
name: sphinx-html-artifact
135135
path: sphinx/build/html/
@@ -147,7 +147,7 @@ jobs:
147147
sparse-checkout: .github
148148

149149
- name: Download HTML artifacts
150-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
150+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
151151
with:
152152
name: sphinx-html-artifact
153153
path: html/

0 commit comments

Comments
 (0)