Skip to content

Commit ef1aed4

Browse files
Add GitHub Action to update Gradle wrapper
This adds a GitHub Action that creates a pull request to update the gradle wrapper. We can't use dependabot for this because it doesn't support it (dependabot/dependabot-core#2223).
1 parent 095e1b9 commit ef1aed4

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
# Run at midnight (UTC) every wednesday
8+
- cron: "0 0 * * 3"
9+
10+
jobs:
11+
update-gradle-wrapper:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Update Gradle Wrapper
18+
uses: gradle-update/update-gradle-wrapper-action@v2
19+
with:
20+
paths: codegen/**

0 commit comments

Comments
 (0)