Update SQLInjectionExample.java #3
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
# Mobb/Checkamrx Fixer on pull requests | |
# This workflow defines the needed steps to run Checkmarx on every pull request and pass the results to Mobb Fixer. | |
# | |
# Secrets in use (add your missing ones): | |
# CX_TENANT - your Checkmarx tenant name (found in your Checkmarx settings) | |
# CX_API_TOKEN - your Checkmarx credentials (find how to get it here: https://checkmarx.com/resource/documents/en/34965-68775-generating-a-refresh-token--api-key-.html) | |
# CX_BASE_URI - your Checkmarx app url, e.g. "https://ast.checkmarx.net/" | |
# CX_BASE_AUTH_URI - your Checkmarx auth url, e.g. "https://iam.checkmarx.net/" | |
# MOBB_API_TOKEN - your mobb user credentials (autumatially set if you used the Mobb app to configure the integration) | |
# GITHUB_TOKEN - automatically set by GitHub | |
name: "Mobb/Checkmarx test name2" | |
#on: | |
#issue_comment: | |
#types: [created] | |
on: | |
pull_request: | |
branches: ["*"] | |
jobs: | |
scan-and-fix: | |
name: Issue Comment | |
runs-on: 'ubuntu-latest' | |
timeout-minutes: 360 | |
permissions: | |
pull-requests: write | |
statuses: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 |