Auto-update gradle wrappers (#8532)
This commit is contained in:
parent
c10108bbe0
commit
a41158fa1b
|
@ -0,0 +1,25 @@
|
|||
name: Update gradle wrappers (daily)
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# daily at 1:30 UTC
|
||||
- cron: "30 1 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-gradle-wrapper:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Update Gradle Wrapper
|
||||
uses: gradle-update/update-gradle-wrapper-action@v1
|
||||
|
||||
workflow-notification:
|
||||
needs:
|
||||
- update-gradle-wrapper
|
||||
if: always()
|
||||
uses: ./.github/workflows/reusable-workflow-notification.yml
|
||||
with:
|
||||
success: ${{ needs.analyze.result == 'success' }}
|
Loading…
Reference in New Issue