Skip to content

Commit 427820b

Browse files
Pin dependencies
1 parent 053c735 commit 427820b

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/pixi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
- macos-latest
2121
- ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2424
with:
2525
# so versioningit can figure out the version
2626
fetch-depth: 0
2727
fetch-tags: true
28-
- uses: prefix-dev/[email protected]
28+
- uses: prefix-dev/setup-pixi@ba3bb36eb2066252b2363392b7739741bb777659 # v0.8.1
2929
# with:
3030
# cache: true
3131
# cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}

.github/workflows/pre-commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
pre-commit:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
17-
- uses: actions/setup-python@v5
18-
- uses: pre-commit/[email protected]
16+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
17+
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
18+
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Download all the dists
40-
uses: actions/download-artifact@v4
40+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
4141
with:
4242
name: python-package-distributions-${{ env.PYTHON_VERSION }}
4343
path: dist/
@@ -65,7 +65,7 @@ jobs:
6565

6666
steps:
6767
- name: Download all the dists
68-
uses: actions/download-artifact@v4
68+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
6969
with:
7070
name: python-package-distributions-${{ env.PYTHON_VERSION }}
7171
path: dist/
@@ -90,12 +90,12 @@ jobs:
9090

9191
steps:
9292
- name: Download all the dists
93-
uses: actions/download-artifact@v4
93+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
9494
with:
9595
name: python-package-distributions-${{ env.PYTHON_VERSION }}
9696
path: dist/
9797
- name: Sign the dists with Sigstore
98-
uses: sigstore/[email protected]
98+
uses: sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0
9999
with:
100100
inputs: >-
101101
./dist/*.tar.gz

.github/workflows/test_and_package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
run:
3333
shell: "bash -l {0}"
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3636
with:
3737
# so versioningit can figure out the version
3838
fetch-depth: 0
3939
fetch-tags: true
4040
- name: Set up Python ${{ matrix.python-version }} with conda
41-
uses: conda-incubator/setup-miniconda@v3
41+
uses: conda-incubator/setup-miniconda@d2e6a045a86077fb6cad6f5adf368e9076ddaa8d # v3
4242
with:
4343
activate-environment: test
4444
auto-activate-base: false
@@ -66,7 +66,7 @@ jobs:
6666
cd docs
6767
make html
6868
- name: GitHub Pages deploy
69-
uses: JamesIves/[email protected]
69+
uses: JamesIves/github-pages-deploy-action@15de0f09300eea763baee31dff6c6184995c5f6a # v4.7.2
7070
with:
7171
branch: gh-pages
7272
folder: docs/build/html
@@ -81,7 +81,7 @@ jobs:
8181
run: |
8282
python -m twine check ./dist/*
8383
- name: Store the distribution packages
84-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4
8585
with:
8686
name: python-package-distributions-${{ matrix.python-version }}
8787
path: ./dist
@@ -101,11 +101,11 @@ jobs:
101101
- 3.11
102102
- 3.12
103103
steps:
104-
- uses: actions/setup-python@v5
104+
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
105105
with:
106106
python-version: ${{ matrix.python-version }}
107107
- name: Download the distribution packages
108-
uses: actions/download-artifact@v4
108+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
109109
with:
110110
name: python-package-distributions-${{ matrix.python-version }}
111111
path: ./dist

0 commit comments

Comments
 (0)