Skip to content

Commit d489768

Browse files
authored
Merge pull request #13 from step-security-bot/stepsecurity_remediation_1742395475
CI/CD Hardening: Fixing StepSecurity Flagged Issues
2 parents f6e0aaf + 2ef6878 commit d489768

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/pytest.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Python package
22

33
on: [push]
44

5+
permissions:
6+
contents: read
7+
58
jobs:
69
build:
710

@@ -11,9 +14,14 @@ jobs:
1114
python-version: ["3.9", "3.10", "3.11", "3.12"]
1215

1316
steps:
14-
- 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
1523
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
1725
with:
1826
python-version: ${{ matrix.python-version }}
1927
- name: Install dependencies

0 commit comments

Comments
 (0)