Add scripts and workflow to update Spring Boot version

This commit is contained in:
Marcus Da Coregio
2023-07-20 10:27:37 -03:00
parent 0048f95df0
commit a320504852
5 changed files with 53 additions and 1 deletions

View File

@@ -23,4 +23,4 @@ jobs:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
- name: Build with Gradle
run: ./gradlew check --continue
run: ./gradlew check --continue

View File

@@ -0,0 +1,17 @@
name: Update Spring Boot Version
on:
workflow_dispatch:
schedule:
- cron: '0 12 * * *' # Once per day at 12am UTC
jobs:
update-spring-boot-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Spring Boot Version
run: ./upgrade-spring-boot-version.sh
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update Spring Boot Version"