Skip to content

Commit

Permalink
Schedule Gradle Wrapper updates
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermocalvo committed Jun 17, 2024
1 parent a46d9b0 commit c540fca
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

# Schedule Gradle Wrapper updates
name: Update Gradle Wrapper

on:
schedule:
- cron: "0 8 * * *"
workflow_dispatch:

jobs:
update-gradle-wrapper:

name: Update Gradle Wrapper
runs-on: ubuntu-latest

steps:

# ================================
# SHALLOW CLONE
# ================================
- name: Shallow clone
uses: actions/checkout@v4

# ================================
# UPDATE GRADLE WRAPPER
# ================================
- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v1
with:
release-channel: stable
base-branch: develop
target-branch: develop

0 comments on commit c540fca

Please sign in to comment.