Skip to content

Commit

Permalink
Merge pull request #87 from SUNET/lundberg_fix_gh_tests
Browse files Browse the repository at this point in the history
fix github actions
  • Loading branch information
johanlundberg authored Dec 9, 2022
2 parents af3d5de + 5e63404 commit 05ac010
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on: [push, pull_request]
jobs:

unittests:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
java-version: [8]
java-version: [11]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.8</version>
<version>6.11</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -251,15 +251,15 @@

</plugins>

<!-- Build with Java 1.7 -->
<!-- Build with Java 11 -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 05ac010

Please sign in to comment.