thisisnic opened a new issue, #49728:
URL: https://github.com/apache/arrow/issues/49728
### Describe the enhancement
Most `actions/checkout` steps do not set `persist-credentials: false`.
Setting this option is a recommended best practice to avoid credentials being
stored in the local git config after checkout.
This affects 56 checkout steps across most workflow files. The `zizmor` tool
can auto-fix these.
#### Example
Before:
```yaml
- uses: actions/checkout@v6
with:
fetch-depth: 0
```
After:
```yaml
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
```
### Component(s)
Continuous Integration
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]