Skip to content

[Snyk] Security upgrade com.google.guava:guava from 30.1-jre to 32.0.0-jre #75

[Snyk] Security upgrade com.google.guava:guava from 30.1-jre to 32.0.0-jre

[Snyk] Security upgrade com.google.guava:guava from 30.1-jre to 32.0.0-jre #75

name: "CodeQL"
on:
push:
branches: [develop]
pull_request:
branches: [develop]
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ 'java', 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Set up JDK 1.11
if: matrix.language == 'java'
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Build with Maven
if: matrix.language == 'java'
run: mvn -B package --file pom.xml
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1