Skip to content

[Snyk] Upgrade org.jetbrains.kotlin:kotlin-reflect from 1.7.10 to 1.9.0 #235

[Snyk] Upgrade org.jetbrains.kotlin:kotlin-reflect from 1.7.10 to 1.9.0

[Snyk] Upgrade org.jetbrains.kotlin:kotlin-reflect from 1.7.10 to 1.9.0 #235

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
env:
# needed for excluding enterprise tests
TRAVIS: true
run: mvn -B clean test --file pom.xml --no-transfer-progress