Skip to content

Commit f8888bc

Browse files
chore(deps): Update gradle and github actions
1 parent 760c630 commit f8888bc

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ jobs:
1515
runs-on: "ubuntu-latest"
1616
steps:
1717
- name: "checkout repository"
18-
uses: "actions/checkout@v3"
18+
uses: "actions/checkout@v4"
1919
- name: "setup JDK ${{ env.JDK_VERSION }}"
20-
uses: "actions/setup-java@v3"
20+
uses: "actions/setup-java@v4"
2121
with:
2222
distribution: "temurin"
2323
java-version: "${{ env.JDK_VERSION }}"
2424
- name: "run gradle build"
25-
uses: "gradle/gradle-build-action@v2"
25+
uses: "gradle/gradle-build-action@v3"
2626
with:
2727
cache-read-only: "${{ github.ref != 'refs/heads/main' || github.event_name == 'pull_request' }}"
2828
arguments: "build"
2929
- name: "archive test results"
3030
if: "${{ always() }}"
31-
uses: "actions/upload-artifact@v2"
31+
uses: "actions/upload-artifact@v4"
3232
with:
3333
name: "${{ runner.os }}-test-results"
3434
path: |

.github/workflows/validate-gradle-wrapper.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
runs-on: "ubuntu-latest"
99
steps:
1010
- name: "checkout repository"
11-
uses: "actions/checkout@v3"
11+
uses: "actions/checkout@v4"
1212
- name: "validate gradle wrapper"
13-
uses: "gradle/wrapper-validation-action@v1"
13+
uses: "gradle/wrapper-validation-action@v3"

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
2-
indra = "2.1.1"
3-
kotlin = "1.6.21"
2+
indra = "3.1.3"
3+
kotlin = "2.0.20"
44

55
[libraries]
66
adventure-minimessage = { group = "net.kyori", name = "adventure-text-minimessage", version = "4.10.1" }
@@ -11,4 +11,4 @@ indra = { id = "net.kyori.indra", version.ref = "indra" }
1111
indra-license = { id = "net.kyori.indra.license-header", version.ref = "indra" }
1212
indra-sonatype = { id = "net.kyori.indra.publishing.sonatype", version.ref = "indra" }
1313
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
14-
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version = "10.3.0" }
14+
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version = "12.1.1" }
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.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)