Skip to content
This repository was archived by the owner on Dec 18, 2025. It is now read-only.

fix(deps): update dependency io.github.microutils:kotlin-logging to v3 #903

fix(deps): update dependency io.github.microutils:kotlin-logging to v3

fix(deps): update dependency io.github.microutils:kotlin-logging to v3 #903

Workflow file for this run

name: Check
on:
push:
paths-ignore:
- '**.md'
branches-ignore:
- 'releases/**'
pull_request:
types:
- opened
- synchronize
paths-ignore:
- '*.md'
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Using Caches
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Setup JDK
uses: actions/setup-java@17f84c3641ba7b8f6deff6309fc4c864478f5d62 # v3.14.1
with:
distribution: 'corretto'
java-version: 17
- name: Grant Execute Permission to gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build