Check for Proto Update #65
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: Check for Proto Update | |
on: | |
push: | |
branches: [ "master" ] | |
paths: | |
- "protocol/gradle.properties" | |
schedule: | |
- cron: '0 0 * * 5' # every Friday at midnight | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 | |
- name: Check for Proto Update with Gradle Wrapper | |
run: ./gradlew checkForProtoUpdate |