You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2023/03/09 00:25:40 UTC

[orc] 01/02: ORC-1360: Pin `mockito` to 4.x (#1383)

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 <do...@apache.org>
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 <do...@apache.org>
---
 .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,)"