Update plugin org.jetbrains.kotlin.android to v1.9.0 #83
Workflow file for this run
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: Update verification metadata | |
on: | |
push: | |
branches: | |
- 'renovate/**' | |
paths: | |
- 'dependencies.gradle' | |
jobs: | |
gradle-update-verification-metadata: | |
# https://github.com/actions/virtual-environments/ | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
# https://github.com/marketplace/actions/checkout | |
- uses: actions/checkout@v3 | |
# Setup Java 17 | |
# https://github.com/marketplace/actions/setup-java-jdk | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
cache: 'gradle' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
# Run gradlew check | |
- name: Gradle update verification metadata | |
run: ./gradlew --write-verification-metadata sha256 build --no-daemon | |
- name: Commit | |
run: | | |
git config --local user.email 'action@github.com' | |
git config --local user.name 'GitHub Action' | |
git add . | |
git commit -am 'Update verification metadata' | |
- name: Push | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |