Skip to content

Commit 94fddef

Browse files
Pin third party actions to commit SHA
1 parent 67cc060 commit 94fddef

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/automate-stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
stale:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/[email protected]
11+
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
1212
id: stale
1313
with:
1414
stale-issue-message: >

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
10-
- uses: actions/setup-python@v5
9+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
10+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
1111
with:
1212
python-version: 3.13
13-
- uses: psf/black@stable
13+
- uses: psf/black@af0ba72a73598c76189d6dd1b21d8532255d5942 # stable

.github/workflows/pypi-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818

1919
steps:
2020
# Publish mkdocs-techdocs-core to PyPI
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@master
23+
uses: actions/setup-python@2241d846baea6518b39bec0fb3859d75cb3d3c50 # master-2025-09-27
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install pip, setuptools, and wheel
@@ -38,7 +38,7 @@ jobs:
3838
rm -fr ${distrib}
3939
popd >/dev/null || exit
4040
- name: Publish a Python distribution to PyPI
41-
uses: pypa/[email protected]
41+
uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc # v1.12.2
4242
with:
4343
user: __token__
4444
password: ${{ secrets.PYPI_API_KEY }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
matrix:
1212
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install dependencies

.github/workflows/validate-renovate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
1717
- name: Validate
18-
uses: rinchsan/[email protected]
18+
uses: rinchsan/renovate-config-validator@a12a2b98cd4db923c33d1ce407c57afb43f3ff59 # v0.2.0
1919
with:
2020
pattern: '*.json5'

0 commit comments

Comments
 (0)