Update nvim plugins #784
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# This runs Yelp's `detect-secrets`: https://github.com/Yelp/detect-secrets/blob/master/README.md | |
name: Scan repo for secrets | |
on: | |
pull_request: | |
types: [opened, reopened, ready_for_review, synchronize] | |
push: | |
branches: | |
- '**' | |
tags: | |
- '!**' | |
jobs: | |
check-for-secrets: | |
name: 'Check for secrets' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- name: Run Yelp's detect-secrets | |
uses: ddeville/detect-secrets-action@5d8c7c68e7b89aefce02e21c65855d523e5d08b3 |