[Snyk] Security upgrade lodash from 4.17.21 to 4.17.23 #11
This file contains hidden or 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: SonarQube Analysis | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize, reopened ] | |
| branches: | |
| - master | |
| env: | |
| PROJECT_NAME: qppa-repos-sonarqube-analysis | |
| jobs: | |
| build: | |
| name: Quality Gate | |
| permissions: | |
| id-token: write | |
| contents: read | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Print branch name | |
| run: | | |
| echo "Current branch: ${GITHUB_HEAD_REF}" | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@v1 | |
| with: | |
| role-to-assume: arn:aws:iam::730335206644:role/delegatedadmin/developer/qppa-github-actions-role-1 | |
| aws-region: us-east-1 | |
| - name: Execute ssh command | |
| run: | | |
| aws codebuild start-build --project-name "${PROJECT_NAME}" --source-type-override "GITHUB" --source-location-override "${{ github.event.repository.html_url }}" --source-version "${GITHUB_HEAD_REF}" --environment-variables-override "name=GITHUB_REPO_NAME, value=${{ github.event.repository.name }}, type=PLAINTEXT" |