mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-02 09:43:54 +01:00
19 lines
342 B
YAML
19 lines
342 B
YAML
|
name: Update Gradle wrapper
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 0 1 * *"
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
update:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Update Gradle Wrapper
|
||
|
uses: gradle-update/update-gradle-wrapper-action@v1
|
||
|
with:
|
||
|
target-branch: dev
|