Skip to content

Commit 6eae559

Browse files
committed
Don't persist credentials when checking out repositories
1 parent 72bb05a commit 6eae559

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/maven.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ jobs:
66

77
steps:
88
- uses: actions/checkout@v5
9+
with:
10+
persist-credentials: false
911
- name: Set up Python
1012
uses: actions/setup-python@v6
1113
with:

.github/workflows/publishdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v5
11+
with:
12+
persist-credentials: false
1113
- name: Set up Python
1214
uses: actions/setup-python@v6
1315
with:

.github/workflows/tox.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v5
17+
with:
18+
persist-credentials: false
1719
- name: Set up Python ${{ matrix.python-version }}
1820
uses: actions/setup-python@v6
1921
with:

.github/workflows/typescript.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
working-directory: ./typescript
1616
steps:
1717
- uses: actions/checkout@v5
18+
with:
19+
persist-credentials: false
1820
- uses: actions/setup-node@v5
1921
with:
2022
node-version: '20'

0 commit comments

Comments
 (0)