Skip to content

Commit

Permalink
build: Kotlin 1.7.10 -> 1.8.0, Jackson 2.13.4 -> 2.14.1, Attach 4.0.1…
Browse files Browse the repository at this point in the history
…5 -> 4.0.16
  • Loading branch information
chengenzhao committed Jan 4, 2023
1 parent d85ab15 commit b9d006b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy_SNAPSHOT.yml
Expand Up @@ -10,11 +10,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
server-id: ossrh
server-username: MAVEN_USERNAME
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/latest_jdk.yml
Expand Up @@ -17,15 +17,16 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: 'Checkout'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Set up JDK'
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}

- name: Cache maven deps
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/maven.yml
Expand Up @@ -12,15 +12,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up latest stable JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17

- name: Cache maven deps
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -90,9 +90,9 @@

<!-- dependencies -->
<jfx.version>19</jfx.version>
<kotlin.version>1.7.10</kotlin.version>
<attach.version>4.0.15</attach.version>
<jackson.version>2.13.4</jackson.version>
<kotlin.version>1.8.0</kotlin.version>
<attach.version>4.0.16</attach.version>
<jackson.version>2.14.1</jackson.version>

<!-- test dependencies -->
<junit.jupiter.version>5.8.2</junit.jupiter.version>
Expand Down Expand Up @@ -332,4 +332,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit b9d006b

Please sign in to comment.