Skip to content

Commit

Permalink
Bump org.mockito:mockito-core from 4.3.1 to 5.12.0 (#143)
Browse files Browse the repository at this point in the history
* Bump org.mockito:mockito-core from 4.3.1 to 5.12.0

Bumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 4.3.1 to 5.12.0.
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v4.3.1...v5.12.0)

---
updated-dependencies:
- dependency-name: org.mockito:mockito-core
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* build with Java 21, still targeting 8

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthew Read <MatthewRyanRead@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and MatthewRyanRead authored May 30, 2024
1 parent 74218de commit f3119d3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Check out repo
uses: actions/checkout@v4

- name: Set up JDK 8
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 8
java-version: 21
distribution: temurin
check-latest: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
- name: Check out repo
uses: actions/checkout@v4

- name: Set up JDK 8
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 8
java-version: 21
distribution: temurin
check-latest: false

Expand Down
2 changes: 1 addition & 1 deletion conduit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<awaitility.version>4.2.0</awaitility.version>
<hamcrest.version>2.2</hamcrest.version>
<junit.version>5.8.2</junit.version>
<mockito.version>4.3.1</mockito.version>
<mockito.version>5.12.0</mockito.version>
<opentest4j.version>1.3.0</opentest4j.version>
<testcontainers.version>1.19.8</testcontainers.version>
</properties>
Expand Down
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@
</distributionManagement>

<properties>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<encoding>UTF-8</encoding>
<java.version>8</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<project.build.sourceEncoding>${encoding}</project.build.sourceEncoding>
<project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding>

<!-- Maven plugin versions -->

Expand Down

0 comments on commit f3119d3

Please sign in to comment.