Skip to content

Commit 15fd552

Browse files
committed
2 parents b680693 + a459b8e commit 15fd552

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Checkout Repository
1212
uses: actions/checkout@v5
1313
- name: Validate Gradle Wrapper
14-
uses: gradle/actions/wrapper-validation@v4
14+
uses: gradle/actions/wrapper-validation@v5
1515
- name: Setup Java
1616
uses: actions/setup-java@v5
1717
with:

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Checkout Repository
1212
uses: actions/checkout@v5
1313
- name: Validate Gradle Wrapper
14-
uses: gradle/actions/wrapper-validation@v4
14+
uses: gradle/actions/wrapper-validation@v5
1515
- name: Setup Java
1616
uses: actions/setup-java@v5
1717
with:

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
cache: gradle
2828
java-version: 21
2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v3
30+
uses: github/codeql-action/init@v4
3131
with:
3232
languages: ${{ matrix.language }}
3333
- name: Autobuild
34-
uses: github/codeql-action/autobuild@v3
34+
uses: github/codeql-action/autobuild@v4
3535
- name: Perform CodeQL Analysis
36-
uses: github/codeql-action/analyze@v3
36+
uses: github/codeql-action/analyze@v4

.github/workflows/upload-release-assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Checkout Repository
1010
uses: actions/checkout@v5
1111
- name: Validate Gradle Wrapper
12-
uses: gradle/actions/wrapper-validation@v4
12+
uses: gradle/actions/wrapper-validation@v5
1313
- name: Setup Java
1414
uses: actions/setup-java@v5
1515
with:

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ plugins {
88
alias(libs.plugins.codecov)
99
jacoco
1010
id("buildlogic.common")
11-
id("com.gradleup.nmcp.aggregation") version "1.1.0"
11+
id("com.gradleup.nmcp.aggregation") version "1.2.0"
1212
id("xyz.jpenilla.run-paper") version "2.3.1"
1313
}
1414

15-
var rootVersion by extra("2.14.0")
15+
var rootVersion by extra("2.14.1")
1616
var snapshot by extra("SNAPSHOT")
1717
var revision: String by extra("")
1818
var buildNumber by extra("")
@@ -30,7 +30,7 @@ ext {
3030
}
3131
}
3232

33-
version = String.format("%s", rootVersion)
33+
version = String.format("%s-%s", rootVersion, buildNumber)
3434

3535
if (!project.hasProperty("gitCommitHash")) {
3636
apply(plugin = "org.ajoberstar.grgit")

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ snakeyaml = "2.2"
1010
# Plugins
1111
dummypermscompat = "1.10"
1212
worldguard-bukkit = "7.0.14"
13-
griefprevention = "17.0.0"
13+
griefprevention = "18.0.0"
1414
griefdefender = "2.1.0-SNAPSHOT"
1515
residence = "4.5._13.1"
1616
towny = "0.101.2.5"
@@ -48,7 +48,7 @@ piston = "0.5.10"
4848

4949
# Tests
5050
mockito = "5.20.0"
51-
junit = "5.11.1"
51+
junit = "6.0.0"
5252

5353
# Gradle plugins
5454
pluginyml = "0.6.0"

0 commit comments

Comments
 (0)