Update Gradle Wrapper #21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| permissions: | |
| contents: write | |
| pull-requests: write | |
| name: Update Gradle Wrapper | |
| # Needed because dependabot doesn't support updating the gradle wrapper | |
| # see: https://github.com/dependabot/dependabot-core/issues/2223 | |
| on: | |
| schedule: | |
| - cron: "0 14 * * 1" # 2PM UTC (7AM PST) every Monday. | |
| workflow_dispatch: | |
| jobs: | |
| update-gradle-wrapper: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Update Gradle Wrapper | |
| uses: gradle-update/update-gradle-wrapper-action@v2 |