Skip to content

Bump kotlin.version from 1.8.10 to 1.9.20 #8

Bump kotlin.version from 1.8.10 to 1.9.20

Bump kotlin.version from 1.8.10 to 1.9.20 #8

Workflow file for this run

name: 🏗 build pull request
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup jdk and maven
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
cache: 'maven'
server-id: 'sonatype-nexus'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build
run: mvn -B verify