Skip to content

Commit f9c5fc4

Browse files
authored
Merge branch 'main' into fix-publishing
2 parents d43a34a + a4709d5 commit f9c5fc4

4 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
steps:
2929
- name: Checkout the repository
3030
uses: actions/checkout@v4
31+
with:
32+
persist-credentials: 'false'
3133
- name: Bootstrap repository
3234
uses: ./.github/actions/bootstrap
3335
with:
@@ -47,13 +49,15 @@ jobs:
4749
if: github.event_name != 'pull_request'
4850
with:
4951
fetch-depth: 0
52+
persist-credentials: 'false'
5053
- name: Checkout the repository
5154
uses: actions/checkout@v4
5255
# Necessary for hooks to succeed during tests for PRs
5356
if: github.event_name == 'pull_request'
5457
with:
5558
ref: ${{ github.event.pull_request.head.ref }}
5659
fetch-depth: 0
60+
persist-credentials: 'false'
5761
- name: Bootstrap repository
5862
uses: ./.github/actions/bootstrap
5963
with:

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
with:
2727
fetch-depth: 0
2828
token: ${{ secrets.GITHUB_TOKEN }}
29+
persist-credentials: 'false'
2930

3031
- name: Bootstrap repository
3132
uses: ./.github/actions/bootstrap

.github/workflows/security.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
steps:
2222
- name: Checkout the repository
2323
uses: actions/checkout@v4
24+
with:
25+
persist-credentials: 'false'
2426
- name: Bootstrap repository
2527
uses: ./.github/actions/bootstrap
2628
with:

.github/workflows/update.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
steps:
2424
- name: Checkout the repository
2525
uses: actions/checkout@v4
26+
with:
27+
persist-credentials: 'false'
2628
- name: Bootstrap repository
2729
uses: ./.github/actions/bootstrap
2830
with:

0 commit comments

Comments
 (0)