Skip to content

Commit dd689d3

Browse files
committed
Set checkout actions persist-credentials value to false
Signed-off-by: mulhern <amulhern@redhat.com>
1 parent 2b55bd4 commit dd689d3

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
container: fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
4848
steps:
4949
- uses: actions/checkout@v5
50+
with:
51+
persist-credentials: false
5052
- name: Install dependencies
5153
run: >
5254
dnf install -y
@@ -87,6 +89,8 @@ jobs:
8789
- name: Display Python version
8890
run: python3 --version
8991
- uses: actions/checkout@v5
92+
with:
93+
persist-credentials: false
9094
- name: Install dependencies
9195
run: >
9296
dnf install -y

.github/workflows/push.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
- uses: actions/checkout@v5
3737
with:
3838
path: into-dbus-python
39+
persist-credentials: false
3940
- name: Run with monkeytype
4041
run: >
4142
MONKEYTYPE=1

0 commit comments

Comments
 (0)