Skip to content

Commit 833c0d1

Browse files
use specific GitHub action states
1 parent 01595b5 commit 833c0d1

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v6
27+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2828
with:
2929
persist-credentials: false
3030

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
id-token: write
1919

2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2222
with:
2323
persist-credentials: false
2424
- name: Set up Python
25-
uses: actions/setup-python@v6
25+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2626
with:
2727
python-version: '3.x'
2828
- name: Install dependencies

.github/workflows/unittests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
]
2121

2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2424
with:
2525
persist-credentials: false
2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v6
27+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
allow-prereleases: true
@@ -36,4 +36,4 @@ jobs:
3636
run: |
3737
pytest --durations=0 --cov=./
3838
- name: Upload coverage to Codecov
39-
uses: codecov/codecov-action@v5
39+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2

.github/workflows/verification.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
permissions:
1414
contents: read
1515
steps:
16-
- uses: actions/checkout@v6
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1717
with:
1818
persist-credentials: false
1919
- name: Set up Python
20-
uses: actions/setup-python@v6
20+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2121
with:
2222
python-version: '3.x'
2323
- name: Install dependencies
@@ -34,4 +34,4 @@ jobs:
3434
run: |
3535
mypy --pretty
3636
- name: Verify with PyRight
37-
uses: jakebailey/pyright-action@v3
37+
uses: jakebailey/pyright-action@8ec14b5cfe41f26e5f41686a31eb6012758217ef

0 commit comments

Comments
 (0)