diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c6851d0..ba8bc74 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -10,11 +10,11 @@ jobs:
steps:
# Download code from repository
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
# Setup Java
- name: Setup JDK
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index b1a442a..c54c362 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -6,20 +6,20 @@ jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 8
- continue-on-error: ${{ matrix.version == '1.20.2' }}
+ continue-on-error: ${{ matrix.version == '1.20.4' }}
strategy:
fail-fast: false
matrix:
flavor: ['bukkit', 'spigot', 'paper', 'purpur']
- version: ['1.20.2', '1.19.4', '1.18.2', '1.17.1', '1.16.5']
+ version: ['1.20.4', '1.19.4', '1.18.2', '1.17.1', '1.16.5']
steps:
# Download code from repository
- name: Checkout code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
# Setup Java (for building)
- name: Setup JDK (for building)
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
@@ -30,14 +30,14 @@ jobs:
# Setup Java (for testing)
- name: Setup JDK (for testing)
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ startsWith(matrix.version, '1.16') && '11' || (startsWith(matrix.version, '1.17') && '16' || '17') }}
# Setup Node.js
- name: Setup Node.js
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
with:
node-version: '20'
diff --git a/pom.xml b/pom.xml
index 37178f4..3ce577d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
io.josemmo.bukkit.plugin
YamipaPlugin
- 1.2.12
+ 1.2.13
8
@@ -42,7 +42,7 @@
org.spigotmc
spigot-api
- 1.20.2-R0.1-SNAPSHOT
+ 1.20.4-R0.1-SNAPSHOT
provided
@@ -50,7 +50,7 @@
com.comphenix.protocol
ProtocolLib
- 5.1.0
+ 5.2.0-SNAPSHOT
provided
@@ -89,7 +89,7 @@
com.github.TownyAdvanced
towny
- 0.99.6.2
+ 0.100.0.9
provided
@@ -97,7 +97,7 @@
com.github.angeschossen
LandsAPI
- 6.35.0
+ 6.42.0
provided
@@ -105,7 +105,7 @@
org.jetbrains
annotations
- 24.0.1
+ 24.1.0
provided
@@ -122,7 +122,7 @@
org.apache.maven.plugins
maven-shade-plugin
- 3.2.4
+ 3.5.1
shade
@@ -154,7 +154,7 @@
org.apache.maven.plugins
maven-antrun-plugin
- 3.0.0
+ 3.1.0
package