This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch branch-1.8 in repository https://gitbox.apache.org/repos/asf/orc.git
commit 963818ed78d022185a4c994af8c23c46ec0775ef Author: Dongjoon Hyun <[email protected]> AuthorDate: Mon Feb 6 01:48:38 2023 -0800 ORC-1364: Pin `spotless` to 2.30.0 (#1395) ### What changes were proposed in this pull request? This PR pins `spotless` to 2.30.0. ### Why are the changes needed? `spotless` dropped Java 8 support at 2.31.0. - https://github.com/diffplug/spotless/pull/1514 - #1392 ### How was this patch tested? Manual review. (cherry picked from commit 14fba6a5afbb549c708ff3691d34ed04c3d1a566) Signed-off-by: Dongjoon Hyun <[email protected]> --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index be044cfcd..71c55408b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -51,3 +51,6 @@ updates: # Pin mockito to 4.x - dependency-name: "org.mockito" versions: "[5.0.0,)" + # Pin spotless to 2.30.0 due to Java 8 support + - dependency-name: "com.diffplug.spotless:spotless-maven-plugin" + versions: "[2.31.0,)"
