Skip to content

Commit e521fa5

Browse files
committed
ci: hash pinning for actions
1 parent 5fd55ca commit e521fa5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/codeql.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
language: ['python']
1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2222
- name: Initialize CodeQL
23-
uses: github/codeql-action/init@v3
23+
uses: github/codeql-action/init@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
2424
with:
2525
languages: ${{ matrix.language }}
2626
config: |
2727
paths-ignore:
2828
- 'examples/snippets/**/*.py'
2929
- name: Autobuild
30-
uses: github/codeql-action/autobuild@v3
30+
uses: github/codeql-action/autobuild@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
3131
- name: Perform CodeQL Analysis
32-
uses: github/codeql-action/analyze@v3
32+
uses: github/codeql-action/analyze@662472033e021d55d94146f66f6058822b0b39fd # v3.27.0
3333
with:
3434
category: "/language:${{matrix.language}}"

.github/workflows/docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout code
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1111
with:
1212
persist-credentials: false
1313
- name: Setup python 3.13
14-
uses: actions/setup-python@v5
14+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
1515
with:
1616
python-version: '3.13'
1717
cache: 'pip'

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
- 8080:8080
3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3737
with:
3838
persist-credentials: false
3939
- name: Setup python ${{ matrix.python }}
40-
uses: actions/setup-python@v5
40+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
4141
with:
4242
python-version: ${{ matrix.python }}
4343
cache: 'pip'

0 commit comments

Comments
 (0)