File tree Expand file tree Collapse file tree 9 files changed +16
-15
lines changed
Expand file tree Collapse file tree 9 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 66 name : Deploy as P2 repository
77 # Only run Job on tagged commits that start with "v"
88 if : startsWith(github.ref, 'refs/tags/v')
9- runs-on : ubuntu-18 .04
9+ runs-on : ubuntu-22 .04
1010 steps :
1111 - name : Checkout
1212 uses : actions/checkout@v1
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ on: push
44jobs :
55 test_java8 :
66 name : Execute all automated tests on Java 8
7- runs-on : ubuntu-18 .04
7+ runs-on : ubuntu-22 .04
88 steps :
99 - name : Checkout
1010 uses : actions/checkout@v1
1111 - name : Cache local Maven repository
12- uses : actions/cache@v2
12+ uses : actions/cache@v4
1313 with :
1414 path : ~/.m2/repository
1515 key : ${{ runner.os }}-java8-${{ hashFiles('**/pom.xml') }}
@@ -21,12 +21,12 @@ jobs:
2121 run : mvn install
2222 test_java11 :
2323 name : Execute all automated tests on Java 11
24- runs-on : ubuntu-18 .04
24+ runs-on : ubuntu-22 .04
2525 steps :
2626 - name : Checkout
2727 uses : actions/checkout@v1
2828 - name : Cache local Maven repository
29- uses : actions/cache@v2
29+ uses : actions/cache@v4
3030 with :
3131 path : ~/.m2/repository
3232 key : ${{ runner.os }}-java11-${{ hashFiles('**/pom.xml') }}
3535 - name : Set JAVA_HOME to included JDK 11
3636 run : echo JAVA_HOME=$JAVA_HOME_11_X64 >> $GITHUB_ENV
3737 - name : Run Maven install (includes tests)
38- run : mvn install
38+ run : mvn install
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99### Fixed
1010
1111- Update some dependencies for better compatibility with newer Java versions
12+ - Update logging implementation to fix security issues and compatibility with newer Eclipse releases
1213
1314## [ 3.6.0] - 2021-03-01
1415
Original file line number Diff line number Diff line change 99 <groupId >org.corpus-tools</groupId >
1010 <artifactId >pepper</artifactId >
1111 <relativePath >../pom.xml</relativePath >
12- <version >3.6.1 </version >
12+ <version >3.7.0-SNAPSHOT </version >
1313 </parent >
1414
1515 <properties >
Original file line number Diff line number Diff line change 77
88 <groupId >org.corpus-tools</groupId >
99 <artifactId >pepper</artifactId >
10- <version >3.6.1 </version >
10+ <version >3.7.0-SNAPSHOT </version >
1111 <relativePath >../pom.xml</relativePath >
1212 </parent >
1313 <description >This project contains the core of Pepper.</description >
Original file line number Diff line number Diff line change 66 <parent >
77 <groupId >org.corpus-tools</groupId >
88 <artifactId >pepper</artifactId >
9- <version >3.6.1 </version >
9+ <version >3.7.0-SNAPSHOT </version >
1010 <relativePath >../pom.xml</relativePath >
1111 </parent >
1212 <dependencies >
3232 <dependency >
3333 <groupId >ch.qos.logback</groupId >
3434 <artifactId >logback-classic</artifactId >
35- <version >1.0.13 </version >
35+ <version >1.2.0 </version >
3636 </dependency >
3737 <dependency >
3838 <groupId >ch.qos.logback</groupId >
3939 <artifactId >logback-core</artifactId >
40- <version >1.0.13 </version >
40+ <version >1.2.9 </version >
4141 </dependency >
4242 <dependency >
4343 <groupId >commons-io</groupId >
Original file line number Diff line number Diff line change 33 <parent >
44 <groupId >org.corpus-tools</groupId >
55 <artifactId >pepper-parentModule</artifactId >
6- <version >3.6.1 </version >
6+ <version >3.7.0-SNAPSHOT </version >
77 <relativePath >../pepper-parentModule/pom.xml</relativePath >
88 </parent >
99 <artifactId >pepper-newModule</artifactId >
Original file line number Diff line number Diff line change 33 <parent >
44 <groupId >org.corpus-tools</groupId >
55 <artifactId >pepper</artifactId >
6- <version >3.6.1 </version >
6+ <version >3.7.0-SNAPSHOT </version >
77 <relativePath >../pom.xml</relativePath >
88 </parent >
99 <modelVersion >4.0.0</modelVersion >
Original file line number Diff line number Diff line change 44 <modelVersion >4.0.0</modelVersion >
55 <groupId >org.corpus-tools</groupId >
66 <artifactId >pepper</artifactId >
7- <version >3.6.1 </version >
7+ <version >3.7.0-SNAPSHOT </version >
88 <packaging >pom</packaging >
99 <modules >
1010 <module >pepper-framework</module >
104104 <!-- versions of dependencies -->
105105 <salt .version>3.4.2</salt .version>
106106 <commons-lang3 .version>3.4</commons-lang3 .version>
107- <slf4j .version>1.7.5 </slf4j .version>
107+ <slf4j .version>2.0.16 </slf4j .version>
108108 <junit .version>4.13.1</junit .version>
109109 <assertj .version>2.4.1</assertj .version>
110110 <mockito .version>1.10.19</mockito .version>
You can’t perform that action at this time.
0 commit comments