Skip to content

Commit a41158f

Browse files
authored
Auto-update gradle wrappers (#8532)
1 parent c10108b commit a41158f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Update gradle wrappers (daily)
2+
3+
on:
4+
schedule:
5+
# daily at 1:30 UTC
6+
- cron: "30 1 * * *"
7+
workflow_dispatch:
8+
9+
jobs:
10+
update-gradle-wrapper:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- name: Update Gradle Wrapper
17+
uses: gradle-update/update-gradle-wrapper-action@v1
18+
19+
workflow-notification:
20+
needs:
21+
- update-gradle-wrapper
22+
if: always()
23+
uses: ./.github/workflows/reusable-workflow-notification.yml
24+
with:
25+
success: ${{ needs.analyze.result == 'success' }}

0 commit comments

Comments
 (0)