Skip to content

Commit

Permalink
Migrated to JDK 19 in CI (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfvanek committed Aug 22, 2023
1 parent 1a30477 commit 10252be
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 11 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
- name: Set up JDK 19
uses: actions/setup-java@v3
with:
distribution: 'adopt-hotspot'
java-version: '17'
distribution: 'temurin'
java-version: '19'
cache: 'maven'
- name: Build and analyze
env:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
target
/blog-final.ipr
/perfect.blog.iml
/.idea/
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.mfvanek</groupId>
<artifactId>perfect.blog</artifactId>
<version>1.2-SNAPSHOT</version>
<version>1.3.0-SNAPSHOT</version>

<properties>
<java.version>11</java.version>
Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.1</version>
<version>5.9.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver</artifactId>
<version>3.12.11</version>
<version>3.12.12</version>
</dependency>
<dependency>
<groupId>com.sparkjava</groupId>
Expand All @@ -66,12 +66,12 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.5</version>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.5</version>
<version>1.4.7</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
Expand All @@ -96,13 +96,13 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<version>1.18.28</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.14.0</version>
<version>2.15.1</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -140,7 +140,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<version>0.8.10</version>
<executions>
<execution>
<id>jacoco-initialize</id>
Expand Down

0 comments on commit 10252be

Please sign in to comment.