Skip to content

Commit 8ee97f9

Browse files
committed
CI: auto-fix via zizmor
May include: - Avoids risky string interpolation. - Prevents checkout premissions from leaking
1 parent 710819b commit 8ee97f9

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/.github/workflows/lighthouse.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v1
8+
with:
9+
persist-credentials: false
810

911
- name: Set up Python 3.7
1012
uses: actions/setup-python@v1

.github/.github/workflows/pre-commit.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15+
with:
16+
persist-credentials: false
1517
- uses: actions/setup-python@v2
1618
- uses: pre-commit/action@0764670bf370aab253130d534e1eda7ff497dc60 # v2.0.0

.github/.github/workflows/publish-pypi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v1
15+
with:
16+
persist-credentials: false
1517

1618
- name: Set up Python 3.7
1719
uses: actions/setup-python@v1

0 commit comments

Comments
 (0)