Skip to content

Commit

Permalink
build: gradle wrapper update
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyMuse committed Dec 7, 2023
1 parent 5d39775 commit 7923048
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/update_gradle_wrapper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Gradle wrapper update

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

jobs:
update:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: zulu

- name: update gradle
id: gradleUpdate
uses: EdwarDDay/upgrade-gradle-action@v1

- name: create pull request
uses: peter-evans/create-pull-request@v3
with:
commit-message: "Update gradle to ${{ steps.gradleUpdate.outputs.gradle-version }}"
branch: "gradle_update/version_${{ steps.gradleUpdate.outputs.gradle-version }}"
delete-branch: true
title: "Update gradle to ${{ steps.gradleUpdate.outputs.gradle-version }}"
body: |
${{ steps.gradleUpdate.outputs.version-information }}
labels: "dependencies,gradle"
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu May 18 21:46:55 CEST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 7923048

Please sign in to comment.