aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2023-10-24 19:02:27 +0200
committerGitHub <noreply@github.com>2023-10-24 19:02:27 +0200
commitfab96829b305f9efd51a741442462144924fdb59 (patch)
tree32a09ef3cdb3c49cd8d6e4e54be83c0309c60df8
parent777fc70dcff683b04a6610ef8fcae7f48c1f53cc (diff)
parentd0d267501ff7483a60c210cd1a506b179d38067e (diff)
downloadcachetools-fab96829b305f9efd51a741442462144924fdb59.tar.gz
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
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1e31519..acee9ee 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -14,13 +14,13 @@ jobs:
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
steps:
- - uses: actions/checkout@v4
- - uses: actions/setup-python@v4
+ - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
+ - uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- run: python -m pip install coverage tox
- run: python -m tox
- - uses: codecov/codecov-action@v3
+ - uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
with:
name: ${{ matrix.python }}