Skip to content

Bump org.jmailen.kotlinter from 4.1.1 to 4.2.0 #593

Bump org.jmailen.kotlinter from 4.1.1 to 4.2.0

Bump org.jmailen.kotlinter from 4.1.1 to 4.2.0 #593

Workflow file for this run

# https://github.com/actions
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4
# https://github.com/actions/cache
- uses: actions/cache@v3
with:
# https://github.com/actions/cache/blob/main/examples.md#java---gradle
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
# https://github.com/gradle/wrapper-validation-action
- uses: gradle/wrapper-validation-action@v1
# https://github.com/actions/setup-java
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- run: ./gradlew -Dorg.gradle.jvmargs=-Xmx4096m