Skip to content

Commit

Permalink
Add Gradle workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso committed Oct 16, 2024
1 parent 2c44946 commit 926ccdd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Update Gradle Wrapper

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
update-gradle-wrapper:

runs-on: ubuntu-latest

steps:
- name: Install JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- uses: actions/checkout@v4
- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v2
with:
merge-method: SQUASH

0 comments on commit 926ccdd

Please sign in to comment.