Skip to content

Commit

Permalink
Create update-gradle-wrapper.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alorma authored May 15, 2024
1 parent 0105071 commit 18c93ef
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Update Gradle Wrapper

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

jobs:
update-gradle-wrapper:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17

- uses: gradle-update/update-gradle-wrapper-action@v1
with:
repo-token: ${{ secrets.PAT_GRADLE_WRAPPER }}

0 comments on commit 18c93ef

Please sign in to comment.