Skip to content

Commit 72e1ec9

Browse files
Update all non-major dependencies
1 parent 7b4a2c7 commit 72e1ec9

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
jdk: [11, 17]
2424
steps:
2525
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
26-
- uses: actions/cache@0865c47f36e68161719c5b124609996bb5c40129 # tag=v3.0.5
26+
- uses: actions/cache@ac8075791e805656e71b4ba23325ace9e3421120 # tag=v3.0.9
2727
with:
2828
path: |
2929
~/.gradle/caches
@@ -32,7 +32,7 @@ jobs:
3232
restore-keys: |
3333
${{ runner.os }}-jdk-${{ matrix.jdk }}-gradlewrapper-${{ hashFiles('**/gradle-wrapper.properties') }}-gradlescripts-
3434
- name: Set up JDK
35-
uses: actions/setup-java@2c7a4878f5d120bd643426d54ae1209b29cc01a3 # tag=v3.4.1
35+
uses: actions/setup-java@a18c333f3f14249953dab3e186e5e21bf3390f1d # tag=v3.5.1
3636
with:
3737
distribution: zulu
3838
java-version: ${{ matrix.jdk }}
@@ -54,15 +54,15 @@ jobs:
5454
with:
5555
fetch-depth: '0' # https://github.com/shipkit/shipkit-changelog#fetch-depth-on-ci
5656

57-
- uses: actions/cache@0865c47f36e68161719c5b124609996bb5c40129 # tag=v3.0.5
57+
- uses: actions/cache@ac8075791e805656e71b4ba23325ace9e3421120 # tag=v3.0.9
5858
with:
5959
path: |
6060
~/.gradle/caches
6161
~/.gradle/wrapper
6262
key: releasing-${{ runner.os }}-jdk-${{ matrix.jdk }}-gradlewrapper-${{ hashFiles('**/gradle-wrapper.properties') }}-gradlescripts-${{ hashFiles('**/*.gradle*') }}
6363

6464
- name: Set up Java 11
65-
uses: actions/setup-java@2c7a4878f5d120bd643426d54ae1209b29cc01a3 # tag=v3.4.1
65+
uses: actions/setup-java@a18c333f3f14249953dab3e186e5e21bf3390f1d # tag=v3.5.1
6666
with:
6767
distribution: zulu
6868
java-version: 11

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
# Initializes the CodeQL tools for scanning.
4747
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@3e7e3b32d0fb8283594bb0a76cc60a00918b0969 # tag=v2.1.16
48+
uses: github/codeql-action/init@e0e5ded33cabb451ae0a9768fc7b0410bad9ad44 # tag=v2.1.26
4949
with:
5050
languages: ${{ matrix.language }}
5151
queries: +security-and-quality
@@ -57,7 +57,7 @@ jobs:
5757
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5858
# If this step fails, then you should remove it and run the build manually (see below)
5959
- name: Autobuild
60-
uses: github/codeql-action/autobuild@3e7e3b32d0fb8283594bb0a76cc60a00918b0969 # tag=v2.1.16
60+
uses: github/codeql-action/autobuild@e0e5ded33cabb451ae0a9768fc7b0410bad9ad44 # tag=v2.1.26
6161

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

7373
- name: Perform CodeQL Analysis
74-
uses: github/codeql-action/analyze@3e7e3b32d0fb8283594bb0a76cc60a00918b0969 # tag=v2.1.16
74+
uses: github/codeql-action/analyze@e0e5ded33cabb451ae0a9768fc7b0410bad9ad44 # tag=v2.1.26

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ plugins {
66
id("java-library")
77
id("maven-publish")
88
id("com.github.johnrengelman.shadow") version "7.1.2" apply false
9-
id("org.shipkit.shipkit-auto-version") version "1.2.1"
9+
id("org.shipkit.shipkit-auto-version") version "1.2.2"
1010
id("org.shipkit.shipkit-changelog") version "1.2.0"
1111
id("org.shipkit.shipkit-github-release") version "1.2.0"
12-
id("dev.minco.gradle.defaults-plugin") version "0.2.61"
12+
id("dev.minco.gradle.defaults-plugin") version "0.2.62"
1313
}
1414

1515
apply(from = "properties.gradle")
@@ -69,7 +69,7 @@ allprojects {
6969
dependencies {
7070
testImplementation("junit:junit:4.13.2")
7171
implementation("me.nallar.whocalled:WhoCalled:1.1")
72-
api("dev.minco:java-transformer:1.10.49")
72+
api("dev.minco:java-transformer:1.10.50")
7373

7474
val lombok = "org.projectlombok:lombok:1.18.24"
7575
compileOnly(lombok)

gradle-plugin/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
apply(from = "groovy.gradle")
1111

1212
dependencies {
13-
testImplementation(platform("org.spockframework:spock-bom:2.1-groovy-3.0"))
13+
testImplementation(platform("org.spockframework:spock-bom:2.3-groovy-4.0"))
1414
testImplementation("org.spockframework:spock-core")
1515
testImplementation("org.spockframework:spock-junit4")
1616
testImplementation("junit:junit:4.13.2")
@@ -30,6 +30,6 @@ tasks.withType<Test>().configureEach {
3030
configurations.all {
3131
resolutionStrategy {
3232
force("org.jetbrains:annotations:23.0.0")
33-
force("org.ow2.asm:asm:9.3")
33+
force("org.ow2.asm:asm:9.4")
3434
}
3535
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)