chore(deps): update dependency markdownlint-cli to v0.49.1 #333
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
| # Workflow for running security scan using Trivy | |
| name: Test action action-trivy | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| workflow_dispatch: | |
| permissions: | |
| contents: read # for checkout | |
| jobs: | |
| test-trivy: | |
| name: test-trivy | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write # Required to upload SARIF results to the GitHub Security tab | |
| steps: | |
| - name: checkout-local-actions | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - uses: ./action-templates/actions/action-trivy |