Skip to content

Commit 200e9ac

Browse files
Merge pull request #199 from alexanderjordanbaker/CommitSHAs
Move to commit SHAs for .github/workflows actions
2 parents 4eaa224 + 413d576 commit 200e9ac

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci-prb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
os: [ ubuntu-latest ]
1717
steps:
1818
- name: Checkout Code
19-
uses: actions/checkout@v6
19+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2020
- name: Set up Python ${{ matrix.python }}
21-
uses: actions/setup-python@v6
21+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
2222
with:
2323
python-version: ${{ matrix.python }}
2424
- name: Install dependencies

.github/workflows/ci-release-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
name: Python Doc Builder
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
1313
- name: Set up Python
14-
uses: actions/setup-python@v6
14+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
1515
with:
1616
python-version: "3.14"
1717
- name: Install dependencies
@@ -24,7 +24,7 @@ jobs:
2424
- name: Spinx build
2525
run: sphinx-build -b html _staging _build
2626
- name: Upload docs
27-
uses: actions/upload-pages-artifact@v5
27+
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
2828
with:
2929
path: _build
3030
deploy:
@@ -40,4 +40,4 @@ jobs:
4040
steps:
4141
- name: Deploy
4242
id: deployment
43-
uses: actions/deploy-pages@v5
43+
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0

.github/workflows/ci-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
permissions:
1515
id-token: write
1616
steps:
17-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
1818
- name: Set up Python
19-
uses: actions/setup-python@v6
19+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
2020
with:
2121
python-version: "3.14"
2222
- name: Install build
@@ -30,4 +30,4 @@ jobs:
3030
python3 -m
3131
build
3232
- name: Publish to PyPI
33-
uses: pypa/gh-action-pypi-publish@release/v1
33+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0

.github/workflows/ci-snapshot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
name: Python Snapshot Builder
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
1515
- name: Set up Python
16-
uses: actions/setup-python@v6
16+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
1717
with:
1818
python-version: "3.14"
1919
- name: Install build
@@ -27,7 +27,7 @@ jobs:
2727
python3 -m
2828
build
2929
- name: Publish to Test PyPI
30-
uses: pypa/gh-action-pypi-publish@release/v1
30+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
3131
with:
3232
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
33-
repository-url: https://test.pypi.org/legacy/
33+
repository-url: https://test.pypi.org/legacy/

0 commit comments

Comments
 (0)