-
-
Notifications
You must be signed in to change notification settings - Fork 20
39 lines (31 loc) · 998 Bytes
/
gradle-versions-checker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Gradle version checker
on:
# push:
# branches: [ master ]
schedule:
# Runs at 01:00 UTC on the 1, 8, 15, 22 and 29th of every month.
- cron: '0 1 */7 * *'
workflow_dispatch:
jobs:
gradle-versions-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Cache gradle, wrapper and buildSrc
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Dependency updates
run: ./gradlew dependencyUpdates