File tree 6 files changed +31
-18
lines changed
6 files changed +31
-18
lines changed Original file line number Diff line number Diff line change 1
1
name : CD
2
2
3
+ permissions :
4
+ contents : read
5
+
3
6
on :
4
7
workflow_dispatch :
5
8
pull_request :
@@ -14,11 +17,11 @@ jobs:
14
17
dist :
15
18
runs-on : ubuntu-latest
16
19
steps :
17
- - uses : actions/checkout@v4
20
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18
21
with :
19
22
fetch-depth : 0
20
23
21
- - uses : hynek/build-and-inspect-python-package@v2
24
+ - uses : hynek/build-and-inspect-python-package@b5076c307dc91924a82ad150cdd1533b444d3310 # v2.12.0
22
25
23
26
publish :
24
27
needs : [dist]
@@ -31,14 +34,14 @@ jobs:
31
34
if : github.event_name == 'release' && github.event.action == 'published'
32
35
33
36
steps :
34
- - uses : actions/download-artifact@v4
37
+ - uses : actions/download-artifact@b14cf4c92620c250e1c074ab0a5800e37df86765 # v4.2.0
35
38
with :
36
39
name : Packages
37
40
path : dist
38
41
39
42
- name : Generate artifact attestation for sdist and wheel
40
-
43
+ uses : actions/attest-build-provenance@c074443f1aee8d4aeeae555aebba3282517141b2 # v2.2.3
41
44
with :
42
45
subject-path : " dist/*"
43
46
44
- - uses : pypa/gh-action-pypi-publish@release/v1
47
+ - uses : pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
Original file line number Diff line number Diff line change 1
1
name : CI
2
2
3
+ permissions :
4
+ contents : read
5
+
3
6
on :
4
7
workflow_dispatch :
5
8
pull_request :
@@ -21,16 +24,16 @@ jobs:
21
24
name : Format
22
25
runs-on : ubuntu-latest
23
26
steps :
24
- - uses : actions/checkout@v4
27
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25
28
with :
26
29
fetch-depth : 0
27
- - uses : actions/setup-python@v5
30
+ - uses : actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
28
31
with :
29
32
python-version : " 3.x"
30
- -
uses :
pre-commit/[email protected]
33
+ - uses : pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
31
34
with :
32
35
extra_args : --hook-stage manual --all-files
33
- -
uses :
prefix-dev/[email protected]
36
+ - uses : prefix-dev/setup-pixi@92815284c57faa15cd896c4d5cfb2d59f32dc43d # v0.8.3
34
37
with :
35
38
pixi-version : v0.42.1
36
39
cache : true
@@ -52,11 +55,11 @@ jobs:
52
55
runs-on : [ubuntu-latest]
53
56
54
57
steps :
55
- - uses : actions/checkout@v4
58
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
56
59
with :
57
60
fetch-depth : 0
58
61
59
- -
uses :
prefix-dev/[email protected]
62
+ - uses : prefix-dev/setup-pixi@92815284c57faa15cd896c4d5cfb2d59f32dc43d # v0.8.3
60
63
with :
61
64
pixi-version : v0.42.1
62
65
cache : true
66
69
run : pixi run -e ${{ matrix.environment }} tests-ci
67
70
68
71
- name : Upload coverage report
69
-
72
+ uses : codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5.4.0
70
73
with :
71
74
token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 13
13
steps :
14
14
- name : Dependabot metadata
15
15
id : metadata
16
- uses : dependabot/fetch-metadata@v2
16
+ uses : dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7 # v2.3.0
17
17
with :
18
18
github-token : " ${{ secrets.GITHUB_TOKEN }}"
19
19
- name : Enable auto-merge for Dependabot PRs
Original file line number Diff line number Diff line change 1
1
name : Docs Build
2
2
3
+ permissions :
4
+ contents : read
5
+
3
6
on : [push, pull_request]
4
7
5
8
jobs :
6
9
docs-build :
7
10
runs-on : ubuntu-latest
8
11
steps :
9
- - uses : actions/checkout@v4
12
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
10
13
-
uses :
prefix-dev/[email protected]
11
14
with :
12
15
pixi-version : v0.42.1
15
18
- name : Build Docs
16
19
run : pixi run -e docs docs
17
20
- name : Upload Artifact
18
- uses : actions/upload-artifact@v4
21
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
19
22
with :
20
23
name : docs-build
21
24
path : docs/build/
Original file line number Diff line number Diff line change 1
1
name : Docs Deploy
2
2
3
+ permissions :
4
+ contents : read
5
+
3
6
on :
4
7
workflow_run :
5
8
workflows : ["Docs Build"]
14
17
environment :
15
18
name : docs-deploy
16
19
steps :
17
- - uses : actions/checkout@v4
20
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18
21
- name : Download Artifact
19
- uses : dawidd6/action-download-artifact@v9
22
+ uses : dawidd6/action-download-artifact@07ab29fd4a977ae4d2b275087cf67563dfdf0295 # v9
20
23
with :
21
24
workflow : docs-build.yml
22
25
name : docs-build
26
29
# See
27
30
# https://github.com/JamesIves/github-pages-deploy-action/tree/dev#using-an-ssh-deploy-key-
28
31
- name : Deploy
29
- uses : JamesIves/github-pages-deploy-action@v4
32
+ uses : JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
30
33
with :
31
34
folder : docs/build/
32
35
ssh-key : ${{ secrets.DEPLOY_KEY }}
Original file line number Diff line number Diff line change 11
11
[ ![ Conda-Forge] [ conda-badge ]] [ conda-link ]
12
12
[ ![ PyPI platforms] [ pypi-platforms ]] [ pypi-link ]
13
13
[ ![ EffVer Versioning] ( https://img.shields.io/badge/version_scheme-EffVer-0097a7 )] ( https://jacobtomlinson.dev/effver )
14
+ [ ![ SPEC 0 — Minimum Supported Dependencies] ( https://img.shields.io/badge/SPEC-0-green?labelColor=%23004811&color=%235CA038 )] ( https://scientific-python.org/specs/spec-0000/ )
14
15
15
16
<!-- SPHINX-START -->
16
17
You can’t perform that action at this time.
0 commit comments