Skip to content

Commit 926ccdd

Browse files
committed
Add Gradle workflow
1 parent 2c44946 commit 926ccdd

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Update Gradle Wrapper
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "0 0 * * *"
7+
8+
jobs:
9+
update-gradle-wrapper:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Install JDK 21
15+
uses: actions/setup-java@v4
16+
with:
17+
distribution: 'temurin'
18+
java-version: 21
19+
- uses: actions/checkout@v4
20+
- name: Update Gradle Wrapper
21+
uses: gradle-update/update-gradle-wrapper-action@v2
22+
with:
23+
merge-method: SQUASH

0 commit comments

Comments
 (0)