fix(active-checks): use HTTP/1.1 for health check probes with automat… #58
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: SAST | |
| concurrency: | |
| # for PR's cancel the running task, if another commit is pushed | |
| group: ${{ github.workflow }} ${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| on: | |
| pull_request: | |
| paths: | |
| - lib/**.lua | |
| push: | |
| branches: | |
| - master | |
| - main | |
| paths: | |
| - lib/**.lua | |
| workflow_dispatch: {} | |
| jobs: | |
| semgrep: | |
| name: Semgrep SAST | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # required for all workflows | |
| security-events: write | |
| # only required for workflows in private repositories | |
| actions: read | |
| contents: read | |
| if: (github.actor != 'dependabot[bot]') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Kong/public-shared-actions/security-actions/semgrep@fa3d956324c2633b23cc3825b3403d91460675a1 # 4.1.4 |