mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
85c10b148e
* Update default timeouts for .github/workflows/sast.yml [skip ci] * configure timeout --------- Co-authored-by: Filipe Freire <filipe.freire@konghq.com>
29 lines
583 B
YAML
29 lines
583 B
YAML
name: SAST
|
|
|
|
on:
|
|
pull_request: {}
|
|
push:
|
|
branches:
|
|
- develop
|
|
- release/*
|
|
workflow_dispatch: {}
|
|
|
|
|
|
jobs:
|
|
semgrep:
|
|
timeout-minutes: 5
|
|
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@bd3d75259607dd015bea3b3313123f53b80e9d7f
|