Skip to content

Commit

Permalink
feat(gradle): add Gradle Wrapper updater workflow (#925)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonMarquis authored Jan 29, 2024
1 parent 3882a42 commit 83b30b1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/gradle-wrapper-updater.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 🐘 Gradle Wrapper updater

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

jobs:
update-gradle-wrapper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle-update/update-gradle-wrapper-action@0407394b9d173dfc9cf5695f9f560fef6d61a5fe # v1.0.20
with:
pr-title-template: 'chore(deps): bump Gradle Wrapper from %sourceVersion% to %targetVersion%'

0 comments on commit 83b30b1

Please sign in to comment.