Skip to content

Commit

Permalink
依赖更新
Browse files Browse the repository at this point in the history
  • Loading branch information
elveahuang committed Aug 12, 2024
1 parent 25ecbd7 commit dfd6951
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'liberica'
java-version: '21'
distribution: "liberica"
java-version: "21"
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4
- name: Check Java and Gradle
run: |
java -version
Expand All @@ -30,8 +30,8 @@ jobs:
server: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USER }}
ssh_private_key: ${{ secrets.SERVER_KEY }}
local_path: 'platform-boot-server/app-server/build/libs/app.zip'
remote_path: '/data/app/deploy'
local_path: "platform-boot-server/app-server/build/libs/app.zip"
remote_path: "/data/app/deploy"
sftpArgs: "-o ConnectTimeout=5"
- name: Executing Remote SSH Commands
uses: appleboy/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
id("com.google.osdetector") version "1.7.3" apply false
id("org.hibernate.orm") version "6.5.2.Final" apply false
id("org.springframework.boot") version "3.3.2" apply false
id("org.jetbrains.kotlin.jvm") version "2.0.0" apply false
id("org.jetbrains.kotlin.jvm") version "2.0.10" apply false
id("org.graalvm.buildtools.native") version "0.10.2" apply false
}

Expand Down Expand Up @@ -74,7 +74,7 @@ allprojects {
mavenBom("cn.hutool:hutool-bom:5.8.29")
mavenBom("me.ahoo.cosid:cosid-bom:2.9.3")
mavenBom("org.mockito:mockito-bom:5.12.0")
mavenBom("org.jetbrains.kotlin:kotlin-bom:2.0.0")
mavenBom("org.jetbrains.kotlin:kotlin-bom:2.0.10")
mavenBom("com.baomidou:mybatis-plus-bom:3.5.7")
}

Expand Down Expand Up @@ -106,7 +106,7 @@ allprojects {
dependency("org.redisson:redisson-spring-boot-starter:3.34.0")
// others
dependency("com.nimbusds:nimbus-jose-jwt:9.40")
dependency("com.nimbusds:oauth2-oidc-sdk:11.13")
dependency("com.nimbusds:oauth2-oidc-sdk:11.14")
dependency("org.json:json:20240303")
dependency("com.alibaba:fastjson:2.0.52")
dependency("com.github.spotbugs:spotbugs-annotations:4.8.6")
Expand Down

0 comments on commit dfd6951

Please sign in to comment.