Skip to content

Commit b668b55

Browse files
committed
security fix
1 parent 51ca014 commit b668b55

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/deploy_to_repo.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
13+
with:
14+
persist-credentials: false
1315

1416
- name: Setup python
1517
uses: actions/setup-python@v1

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626

2727
steps:
2828
- name: Check out repository code
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
30+
with:
31+
persist-credentials: false
3032

3133
- name: Copy .env
3234
run: cp .env.example .env

0 commit comments

Comments
 (0)