Add scripts and workflow to update Spring Boot version
This commit is contained in:
@@ -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
|
||||
|
||||
17
.github/workflows/update-spring-boot-version.yml
vendored
Normal file
17
.github/workflows/update-spring-boot-version.yml
vendored
Normal 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"
|
||||
Reference in New Issue
Block a user