Skip to content

Property query proposal. See #6. #11

Property query proposal. See #6.

Property query proposal. See #6. #11

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: "SAST"
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ "main" ]
paths-ignore:
- "ISSUE_TEMPLATE/**"
pull_request:
branches: [ "main" ]
paths-ignore:
- "ISSUE_TEMPLATE/**"
permissions: read-all
jobs:
super-sast:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Test
run: |
echo "UID=$(id -u)" >> .env
docker run --rm --user="$(id -u)" \
-v "${PWD}:/code" \
-w /code \
-e MAVEN_OPTS=" -ntp " \
-e RUN_OWASP_DEPENDENCY_CHECK=false \
-e RUN_SPOTBUGS_CHECK=false \
-e RUN_SPOTLESS_CHECK=false \
-e RUN_SPOTLESS_APPLY=false \
-e HOME=/tmp \
-e USER=nobody \
-e BANDIT_CONFIG_FILE=/code/.bandit.yaml \
ghcr.io/par-tec/super-sast:latest