Skip to content

Commit ca23860

Browse files
committed
Update dependencies
1 parent 235ab7e commit ca23860

File tree

3 files changed

+15
-18
lines changed

3 files changed

+15
-18
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626

27-
- uses: actions/setup-java@v3
27+
- uses: actions/setup-java@v4
2828
with:
2929
distribution: 'temurin'
30-
java-version: '17'
30+
java-version: '21'
3131

3232
- name: Setup Gradle
33-
uses: gradle/gradle-build-action@v2
33+
uses: gradle/actions/setup-gradle@v4
3434

3535
- name: Run build with Gradle wrapper
3636
run: ./gradlew build
3737

3838
- name: Upload artifact
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: jar-binary
4242
path: build/libs/luckperms-rest-api-v1.jar
@@ -51,37 +51,37 @@ jobs:
5151

5252
steps:
5353
- name: Checkout repository
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555

5656
- name: Retrieve saved standalone jar artifact
57-
uses: actions/download-artifact@v3
57+
uses: actions/download-artifact@v4
5858
with:
5959
name: jar-binary
6060
path: docker/
6161

6262
- name: Set up QEMU
63-
uses: docker/setup-qemu-action@v1
63+
uses: docker/setup-qemu-action@v3
6464

6565
- name: Set up Docker Buildx
66-
uses: docker/setup-buildx-action@v1
66+
uses: docker/setup-buildx-action@v3
6767

6868
- name: Log in to the Container registry
69-
uses: docker/login-action@v1
69+
uses: docker/login-action@v3
7070
with:
7171
registry: ${{ env.REGISTRY }}
7272
username: ${{ github.actor }}
7373
password: ${{ secrets.GITHUB_TOKEN }}
7474

7575
- name: Extract metadata for Docker
7676
id: meta
77-
uses: docker/metadata-action@v3
77+
uses: docker/metadata-action@v5
7878
with:
7979
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
8080
flavor: |
8181
latest=${{ github.ref == 'refs/heads/main' }}
8282
8383
- name: Build and push Docker image
84-
uses: docker/build-push-action@v2
84+
uses: docker/build-push-action@v6
8585
with:
8686
context: docker/
8787
platforms: linux/amd64,linux/arm64

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# luckperms-rest-api
2-
3-
![](https://img.shields.io/badge/status-beta-important?style=for-the-badge)
1+
# LuckPerms REST API
42

53
A REST API for LuckPerms.
64

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version '1.0-SNAPSHOT'
99

1010
java {
1111
toolchain {
12-
languageVersion = JavaLanguageVersion.of(17)
12+
languageVersion = JavaLanguageVersion.of(21)
1313
}
1414
}
1515

@@ -21,12 +21,11 @@ license {
2121

2222
repositories {
2323
mavenCentral()
24-
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
2524
}
2625

2726
dependencies {
2827
compileOnly 'org.slf4j:slf4j-api:1.7.36'
29-
compileOnly 'net.luckperms:api:5.5-20240616.203859-4'
28+
compileOnly 'net.luckperms:api:5.5'
3029
implementation 'io.javalin:javalin:4.6.4'
3130
implementation 'io.javalin:javalin-openapi:4.6.4'
3231
}

0 commit comments

Comments
 (0)