diff --git a/.github/workflows/security-checks.yml b/.github/workflows/security-checks.yml new file mode 100644 index 0000000..b3f4d32 --- /dev/null +++ b/.github/workflows/security-checks.yml @@ -0,0 +1,18 @@ +name: security-checks # this doesn't show up in ui + +on: + workflow_call: + inputs: + runs-on: + description: Platform to execute on + type: string + default: ubuntu-latest + +jobs: + security-checks: + runs-on: ${{ inputs.runs-on }} + permissions: + contents: read + + steps: + - uses: actions/checkout@v3