Skip to content

chore(deps): update actions/cache action to v4.2.0 #707

chore(deps): update actions/cache action to v4.2.0

chore(deps): update actions/cache action to v4.2.0 #707

Workflow file for this run

on:
push:
branches:
- develop
- renovate/**
pull_request:
branches:
- develop
name: Run tests
jobs:
check:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up JDK
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
with:
distribution: temurin
java-version: 11
- name: Cache Kotlin/Native compiler
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ~/.konan
key: ${{ runner.os }}-gradle-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties', 'gradle/libs.versions.toml') }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@cc4fc85e6b35bafd578d5ffbc76a5518407e1af0 # v4
with:
gradle-home-cache-cleanup: true
add-job-summary: always
validate-wrappers: true
- name: Run unit tests
shell: bash
run: ./gradlew check -PenableNativeTargets --stacktrace