Skip to content

Commit 66df512

Browse files
adwsinghrhernandez35
authored andcommitted
Add Github action to update Gradle wrapper
1 parent e6acefc commit 66df512

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Update Gradle Wrapper
2+
# Needed because dependabot doesn't support updating the gradle wrapper
3+
# see: https://github.com/dependabot/dependabot-core/issues/2223
4+
5+
on:
6+
schedule:
7+
- cron: "0 14 * * 1" # 2PM UTC (7AM PST) every Monday.
8+
9+
jobs:
10+
update-gradle-wrapper:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Update Gradle Wrapper
17+
uses: gradle-update/update-gradle-wrapper-action@v2

0 commit comments

Comments
 (0)