Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/soundness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
# This is set to true since swift package diagnose-api-breaking-changes is
# cloning the repo again and without it being set to true this job won't work for
# private repos.
persist-credentials: true
submodules: true
fetch-tags: true
fetch-depth: 0 # Fetching tags requires fetch-depth: 0 (https://github.com/actions/checkout/issues/1471)
Expand Down
Loading