We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6e0aaf + 2ef6878 commit d489768Copy full SHA for d489768
.github/workflows/pytest.yml
@@ -2,6 +2,9 @@ name: Python package
2
3
on: [push]
4
5
+permissions:
6
+ contents: read
7
+
8
jobs:
9
build:
10
@@ -11,9 +14,14 @@ jobs:
11
14
python-version: ["3.9", "3.10", "3.11", "3.12"]
12
15
13
16
steps:
- - uses: actions/checkout@v4
17
+ - name: Harden the runner (Audit all outbound calls)
18
+ uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
19
+ with:
20
+ egress-policy: audit
21
22
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v4
24
+ uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
25
with:
26
python-version: ${{ matrix.python-version }}
27
- name: Install dependencies
0 commit comments