From 7710423ef754c97ba4ab4874d05dbb98bcf71ae0 Mon Sep 17 00:00:00 2001 From: Kengo TODA Date: Fri, 15 Dec 2023 14:22:09 +0800 Subject: [PATCH] fix: Gradle plugin should require JVM 8 but require JVM 11 (#1074) * ci: fix the base config for renovate Signed-off-by: Kengo TODA * ci: introduce a GitHub Action to verify commit comments Signed-off-by: Kengo TODA * fix: Gradle plugin requires JVM 8 Signed-off-by: Kengo TODA * ci: skip verification in case of push Signed-off-by: Kengo TODA --------- Signed-off-by: Kengo TODA --- .github/workflows/gradle.yml | 2 ++ README.md | 3 ++- renovate.json | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 1059e9bc..68421811 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -18,6 +18,8 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 + - uses: webiny/action-conventional-commits@v1.1.0 + if: github.event_name == 'pull_request' - name: Set up JDK uses: actions/setup-java@v4 with: diff --git a/README.md b/README.md index a757f83e..65125627 100644 --- a/README.md +++ b/README.md @@ -175,6 +175,7 @@ You can change SpotBugs version by [the `toolVersion` property of the spotbugs e | Gradle Plugin | SpotBugs | |--------------:|---------:| +| 6.0.3 | 4.8.3 | | 6.0.0 | 4.8.2 | | 5.2.5 | 4.8.2 | | 5.2.3 | 4.8.1 | @@ -209,7 +210,7 @@ dependencies { ## Development ### Setup -* development requires java 11 or higher to be installed +* development requires java 17 or higher to be installed * The CI server uses `ubuntu-latest` docker image, but you should be able to develop on any linux/unix based OS. * before creating commits * read https://www.conventionalcommits.org/en diff --git a/renovate.json b/renovate.json index 39a2b6e9..5db72dd6 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" + "config:recommended" ] }