Skip to content

Commit fab9682

Browse files
authored
Merge pull request #289 from kurtmckee/use-sha-for-github-action-versions-issue-287
Use SHAs, not mutable version tags, to ID GitHub Action versions
2 parents 777fc70 + d0d2675 commit fab9682

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
matrix:
1515
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
1616
steps:
17-
- uses: actions/checkout@v4
18-
- uses: actions/setup-python@v4
17+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
18+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
1919
with:
2020
python-version: ${{ matrix.python }}
2121
allow-prereleases: true
2222
- run: python -m pip install coverage tox
2323
- run: python -m tox
24-
- uses: codecov/codecov-action@v3
24+
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
2525
with:
2626
name: ${{ matrix.python }}

0 commit comments

Comments
 (0)