Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 4, 2024
1 parent 46f9506 commit 3b360d0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3
- uses: gradle/wrapper-validation-action@8d49e559aae34d3e0eb16cde532684bc9702762b # v1.0.6
- uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # v1.1.0

build:
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
Expand All @@ -23,7 +23,7 @@ jobs:
jdk: [11, 15, 16]
steps:
- uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
- uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3
with:
path: |
~/.gradle/caches
Expand All @@ -32,7 +32,7 @@ jobs:
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.jdk }}-gradlewrapper-${{ hashFiles('**/gradle-wrapper.properties') }}-gradlescripts-
- name: Set up JDK
uses: actions/setup-java@3f07048e3d294f56e9b90ac5ea2c6f74e9ad0f98 # v3.10.0
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
java-version: ${{ matrix.jdk }}
distribution: adopt
Expand All @@ -54,15 +54,15 @@ jobs:
with:
fetch-depth: '0' # https://github.com/shipkit/shipkit-changelog#fetch-depth-on-ci

- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
- uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: releasing-${{ runner.os }}-jdk-${{ matrix.jdk }}-gradlewrapper-${{ hashFiles('**/gradle-wrapper.properties') }}-gradlescripts-${{ hashFiles('**/*.gradle*') }}

- name: Set up Java 11
uses: actions/setup-java@3f07048e3d294f56e9b90ac5ea2c6f74e9ad0f98 # v3.10.0
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
java-version: 11
distribution: adopt
Expand Down
14 changes: 7 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ plugins {
id("java")
id("java-library")
id("maven-publish")
id("dev.minco.gradle.defaults-plugin") version "0.2.62"
id("dev.minco.gradle.defaults-plugin") version "0.2.65"
id("org.shipkit.shipkit-auto-version") version "1.2.2"
id("org.shipkit.shipkit-changelog") version "1.2.0"
id("org.shipkit.shipkit-github-release") version "1.2.0"
id("org.shipkit.shipkit-changelog") version "1.2.3"
id("org.shipkit.shipkit-github-release") version "1.2.3"
}

apply(from = "properties.gradle")
Expand Down Expand Up @@ -36,16 +36,16 @@ minimallyCorrectDefaults.configureProject(project)

dependencies {
testImplementation("junit:junit:4.13.2")
implementation("com.github.javaparser:javaparser-core:3.25.1")
implementation("com.github.javaparser:javaparser-core:3.25.8")
api("com.google.code.findbugs:jsr305:3.0.2")
api("org.jetbrains:annotations:24.0.1")
api("org.jetbrains:annotations:24.1.0")

val asmVer = "9.4"
val asmVer = "9.6"
implementation("org.ow2.asm:asm:$asmVer")
implementation("org.ow2.asm:asm-util:$asmVer")
implementation("org.ow2.asm:asm-tree:$asmVer")

val lombok = "org.projectlombok:lombok:1.18.26"
val lombok = "org.projectlombok:lombok:1.18.30"
compileOnly(lombok)
testCompileOnly(lombok)
annotationProcessor(lombok)
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 3b360d0

Please sign in to comment.