Skip to content

[Snyk] Upgrade @types/lodash from 4.17.17 to 4.17.18 #44

[Snyk] Upgrade @types/lodash from 4.17.17 to 4.17.18

[Snyk] Upgrade @types/lodash from 4.17.17 to 4.17.18 #44

Workflow file for this run

name: SonarQube Analysis
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- develop
env:
PROJECT_NAME: qppa-repos-sonarqube-analysis
jobs:
build:
name: Quality Gate
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
id-token: write # for IAM role via OIDC
contents: read # for actions/checkout
steps:
- name: Checkout code
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: Start SonarQube CodeBuild scan
id: start_build
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