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 12a2b20e36b9dac6ef80ab4a3b6491c45ca1514c Author: Dongjoon Hyun <[email protected]> AuthorDate: Mon Jan 16 16:36:31 2023 -0800 ORC-1360: Pin `mockito` to 4.x (#1383) ### What changes were proposed in this pull request? This PR aims to pin `Mockito` to 4.x. ### Why are the changes needed? 5.x is a major version change which is incompatible. We can revisit this later. ### How was this patch tested? Closes #1381 (cherry picked from commit 07e049b03190554350c7e58e535d23c2f1064cf0) 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 c0383bef3..be044cfcd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -48,3 +48,6 @@ updates: # Pin annotations to 17.0.0 - dependency-name: "org.jetbrains.annotations" versions: "[17.0.1,)" + # Pin mockito to 4.x + - dependency-name: "org.mockito" + versions: "[5.0.0,)"
