chore: Automatically bump README.md version number #221
Workflow file for this run
This file contains hidden or 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
| name: Security | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - .github/**/*.yaml | |
| - .editorconfig | |
| - .gitignore | |
| - CHANGELOG.md | |
| - LICENSE.md | |
| - README.md | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - .github/**/*.yaml | |
| - .editorconfig | |
| - .gitignore | |
| - CHANGELOG.md | |
| - LICENSE.md | |
| - README.md | |
| schedule: | |
| - cron: "35 23 * * 5" | |
| jobs: | |
| scan: | |
| name: Security scan | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Run tfsec | |
| uses: tfsec/tfsec-sarif-action@v0.1.4 | |
| with: | |
| sarif_file: tfsec.sarif | |
| - name: Upload SARIF artifact | |
| uses: github/codeql-action/upload-sarif@v3 | |
| with: | |
| sarif_file: tfsec.sarif |