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 Jul 14, 2023
1 parent b6a32c5 commit 38af7d6
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
verify-gradle-wrapper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
- uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b # renovate: tag=v1.0.4
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: gradle/wrapper-validation-action@8d49e559aae34d3e0eb16cde532684bc9702762b # v1.0.6

build:
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
Expand All @@ -22,8 +22,8 @@ jobs:
matrix:
jdk: [11, 17]
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
- uses: actions/cache@0865c47f36e68161719c5b124609996bb5c40129 # tag=v3.0.5
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
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@2c7a4878f5d120bd643426d54ae1209b29cc01a3 # tag=v3.4.1
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
with:
distribution: zulu
java-version: ${{ matrix.jdk }}
Expand All @@ -50,19 +50,19 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
fetch-depth: '0' # https://github.com/shipkit/shipkit-changelog#fetch-depth-on-ci

- uses: actions/cache@0865c47f36e68161719c5b124609996bb5c40129 # tag=v3.0.5
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
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@2c7a4878f5d120bd643426d54ae1209b29cc01a3 # tag=v3.4.1
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
with:
distribution: zulu
java-version: 11
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@3e7e3b32d0fb8283594bb0a76cc60a00918b0969 # tag=v2.1.16
uses: github/codeql-action/init@489225d82a57396c6f426a40e66d461b16b3461d # v2.20.4
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
Expand All @@ -57,7 +57,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@3e7e3b32d0fb8283594bb0a76cc60a00918b0969 # tag=v2.1.16
uses: github/codeql-action/autobuild@489225d82a57396c6f426a40e66d461b16b3461d # v2.20.4

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -71,4 +71,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@3e7e3b32d0fb8283594bb0a76cc60a00918b0969 # tag=v2.1.16
uses: github/codeql-action/analyze@489225d82a57396c6f426a40e66d461b16b3461d # v2.20.4
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ plugins {
id("java-library")
id("maven-publish")
id("com.github.johnrengelman.shadow") version "7.1.2" apply false
id("org.shipkit.shipkit-auto-version") version "1.2.1"
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("dev.minco.gradle.defaults-plugin") version "0.2.61"
id("dev.minco.gradle.defaults-plugin") version "0.2.62"
}

apply(from = "properties.gradle")
Expand Down Expand Up @@ -69,9 +69,9 @@ allprojects {
dependencies {
testImplementation("junit:junit:4.13.2")
implementation("me.nallar.whocalled:WhoCalled:1.1")
api("dev.minco:java-transformer:1.10.49")
api("dev.minco:java-transformer:1.10.54")

val lombok = "org.projectlombok:lombok:1.18.24"
val lombok = "org.projectlombok:lombok:1.18.28"
compileOnly(lombok)
testCompileOnly(lombok)
annotationProcessor(lombok)
Expand Down
8 changes: 4 additions & 4 deletions gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ plugins {
apply(from = "groovy.gradle")

dependencies {
testImplementation(platform("org.spockframework:spock-bom:2.1-groovy-3.0"))
testImplementation(platform("org.spockframework:spock-bom:2.3-groovy-4.0"))
testImplementation("org.spockframework:spock-core")
testImplementation("org.spockframework:spock-junit4")
testImplementation("junit:junit:4.13.2")

val lombok = "org.projectlombok:lombok:1.18.24"
val lombok = "org.projectlombok:lombok:1.18.28"
compileOnly(lombok)
testCompileOnly(lombok)
annotationProcessor(lombok)
Expand All @@ -29,7 +29,7 @@ tasks.withType<Test>().configureEach {

configurations.all {
resolutionStrategy {
force("org.jetbrains:annotations:23.0.0")
force("org.ow2.asm:asm:9.3")
force("org.jetbrains:annotations:23.1.0")
force("org.ow2.asm:asm:9.5")
}
}
2 changes: 1 addition & 1 deletion gradle-plugin/groovy.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ shadowJar {
dependencies {
//compileOnly 'com.google.guava:guava:25.1-jre' // bundled with gradle
implementation parent
testImplementation('io.github.classgraph:classgraph:4.8.149')
testImplementation('io.github.classgraph:classgraph:4.8.161')
}

gradlePlugin {
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.2.1-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 38af7d6

Please sign in to comment.