Update dependency org.jetbrains.kotlin-wrappers:kotlin-extensions to … #569
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Yarn Lock Sync | |
on: | |
push: | |
branches: | |
- 'renovate/**' | |
concurrency: | |
group: yarn-upgrade-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
yarn-lock-upgrade: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Cache Build files | |
uses: actions/cache@v3 | |
if: ${{ !startsWith(matrix.os, 'windows') }} | |
with: | |
path: | | |
~/.konan | |
~/.gradle | |
key: ${{ runner.os }}-${{ hashFiles('gradle.properties') }}-v2 | |
- uses: gradle/gradle-build-action@v2 | |
name: Yarn Lock Upgrade | |
with: | |
arguments: kotlinUpgradeYarnLock | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: renovate[bot] | |
author_email: 29139614+renovate[bot]@users.noreply.github.com | |
message: Upgrade yarn.lock file |