Skip to content

Commit

Permalink
Add gradle wrapper update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Aug 6, 2024
1 parent e832731 commit bb3687a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ViaForge CI
name: Build
on: [pull_request, push, workflow_dispatch]

jobs:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Update Gradle Wrapper
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0"

jobs:
update-gradle-wrapper:
runs-on: ubuntu-24.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v1

0 comments on commit bb3687a

Please sign in to comment.