Use getDictionaryTerm to select from dictionary (#1097) #244
This file contains 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: Dynamic Application Security Tests | |
on: | |
push: | |
branches: [main] | |
jobs: | |
zap-proxy-scan: | |
name: ZAP Proxy Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Docker Build | |
run: docker build --build-arg AEM_GRAPHQL_ENDPOINT=${{secrets.AEM_GRAPHQL_ENDPOINT}} -t sc-labs . | |
env: | |
CI: true | |
AEM_GRAPHQL_ENDPOINT: ${{secrets.AEM_GRAPHQL_ENDPOINT}} | |
AEM_BASE_URL: ${{ secrets.AEM_BASE_URL }} | |
- name: Docker run | |
run: docker run -d -p 3000:3000 sc-labs | |
env: | |
CI: true | |
AEM_GRAPHQL_ENDPOINT: ${{secrets.AEM_GRAPHQL_ENDPOINT}} | |
AEM_BASE_URL: ${{ secrets.AEM_BASE_URL }} | |
- name: OWASP ZAP FULL Scan | |
uses: zaproxy/[email protected] | |
with: | |
target: "http://localhost:3000" | |
fail_action: "false" | |
token: ${{ secrets.GITHUB_TOKEN }} |