Skip to content

Commit 7d0934e

Browse files
Merge branch 'main' into 315-legend-groups
2 parents 8c0b821 + 63691fc commit 7d0934e

3 files changed

Lines changed: 15 additions & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
requirements: tox
4444
- name: Build source (sdist) and binary (wheel) distributions
4545
run: tox -e build-dists
46-
- uses: actions/upload-artifact@v4
46+
- uses: actions/upload-artifact@v5
4747
with:
4848
name: python-package-distributions
4949
path: dist/
@@ -61,7 +61,7 @@ jobs:
6161
permissions:
6262
id-token: write # IMPORTANT: mandatory for trusted publishing
6363
steps:
64-
- uses: actions/download-artifact@v5
64+
- uses: actions/download-artifact@v6
6565
with:
6666
name: python-package-distributions
6767
path: dist/
@@ -84,7 +84,7 @@ jobs:
8484
permissions:
8585
id-token: write # IMPORTANT: mandatory for trusted publishing
8686
steps:
87-
- uses: actions/download-artifact@v5
87+
- uses: actions/download-artifact@v6
8888
with:
8989
name: python-package-distributions
9090
path: dist/
@@ -119,12 +119,12 @@ jobs:
119119

120120
# Sign the package distributions with Sigstore
121121
# https://github.com/marketplace/actions/gh-action-sigstore-python
122-
- uses: actions/download-artifact@v5
122+
- uses: actions/download-artifact@v6
123123
with:
124124
name: python-package-distributions
125125
path: dist/
126126
- name: Sign the dists with Sigstore
127-
uses: sigstore/gh-action-sigstore-python@v3.0.1
127+
uses: sigstore/gh-action-sigstore-python@v3.1.0
128128
with:
129129
inputs: >-
130130
./dist/*.tar.gz

.pre-commit-config.yaml

Lines changed: 4 additions & 4 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.34.0
46+
rev: 0.34.1
4747
hooks:
4848
- id: check-github-actions
4949
- id: check-github-workflows
@@ -81,7 +81,7 @@ repos:
8181
# mdformat is not enabled by default, but can be run manually with:
8282
# pre-commit run mdformat --all-files --hook-stage manual
8383
- repo: https://github.com/executablebooks/mdformat
84-
rev: 0.7.22
84+
rev: 1.0.0
8585
hooks:
8686
- id: mdformat
8787
stages: [ manual ]
@@ -97,14 +97,14 @@ repos:
9797
- id: validate-pyproject
9898

9999
- repo: https://github.com/mgedmin/check-manifest
100-
rev: "0.50"
100+
rev: "0.51"
101101
hooks:
102102
- id: check-manifest
103103
args: [ --no-build-isolation ]
104104
additional_dependencies: [setuptools-scm]
105105

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

docs/reference/changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ This document outlines the list of changes to ridgeplot between each release. Fo
55
Unreleased changes
66
------------------
77

8-
- ...
8+
## CI/CD
9+
10+
- Bump actions/download-artifact from 5 to 6 ({gh-pr}`354`)
11+
- Bump actions/upload-artifact from 4 to 5 ({gh-pr}`353`)
12+
- Bump sigstore/gh-action-sigstore-python from 3.0.1 to 3.1.0 ({gh-pr}`352`)
13+
- pre-commit autoupdate ({gh-pr}`350`)
914

1015
---
1116

0 commit comments

Comments
 (0)