Skip to content

Commit

Permalink
Update Pitest to JDK21 (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
pivovarit authored Oct 3, 2023
1 parent 7038cf3 commit 9d98246
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '21-ea' ]
java: [ '21' ]
architecture: [ 'x64' ]
name: Mutation Testing with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
Expand All @@ -23,7 +23,7 @@ jobs:
with:
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
distribution: 'temurin'
distribution: 'oracle'

- uses: actions/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.9.8</version>
<version>1.15.0</version>
<configuration>
<excludedTestClasses>
<excludedTestClass>*ArchitectureTest</excludedTestClass>
Expand All @@ -148,7 +148,7 @@
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit 9d98246

Please sign in to comment.