Skip to content

Commit

Permalink
Update Github actions to run build with Java 21. (#919)
Browse files Browse the repository at this point in the history
Fixes #917
  • Loading branch information
maciejwalkowiak authored Oct 23, 2023
1 parent 8c5238b commit 76dcb9f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: "Test with ${{ matrix.version }}"
strategy:
matrix:
version: [ 17.0.1-tem, 20-tem ]
version: [ 17.0.1-tem, 21-tem ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</scm>

<properties>
<spotless.version>2.31.0</spotless.version>
<spotless.version>2.40.0</spotless.version>
<jacoco.version>0.8.8</jacoco.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<testcontainers.version>1.18.0</testcontainers.version>
Expand Down
13 changes: 13 additions & 0 deletions spring-cloud-aws-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<eclipse.jakarta.mail.version>1.0.0</eclipse.jakarta.mail.version>
<aws-crt.version>0.21.14</aws-crt.version>
<mockito.version>5.3.1</mockito.version>
<bytebuddy.version>1.14.9</bytebuddy.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -211,6 +212,18 @@
<artifactId>jakarta.mail</artifactId>
<version>${eclipse.jakarta.mail.version}</version>
</dependency>

<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>${bytebuddy.version}</version>
</dependency>

<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${bytebuddy.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 76dcb9f

Please sign in to comment.