Skip to content

Commit d60aa12

Browse files
committed
Resolve merge conflicts
2 parents 4d2673d + 72cc22f commit d60aa12

File tree

98 files changed

+4277
-513
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+4277
-513
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"features": {
1010
"ghcr.io/devcontainers/features/java:1": {
11-
"version": "18.0.2.1-tem",
11+
"version": "25-tem",
1212
"jdkDistro": "tem",
1313
"installGradle": true
1414
},
@@ -35,4 +35,4 @@
3535
"postCreateCommand": {
3636
"config": "cp application/config.json.template application/config.json"
3737
}
38-
}
38+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Basic checks
33
on: [pull_request]
44

55
env:
6-
JAVA_VERSION: 21
6+
JAVA_VERSION: 25
77

88
jobs:
99
spotless:

.github/workflows/code-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- cron: '0 20 * * 4'
99

1010
env:
11-
JAVA_VERSION: 21
11+
JAVA_VERSION: 25
1212

1313
jobs:
1414
sonar:
@@ -72,7 +72,7 @@ jobs:
7272

7373
# Initializes the CodeQL tools for scanning.
7474
- name: Initialize CodeQL
75-
uses: github/codeql-action/init@v2
75+
uses: github/codeql-action/init@v3
7676
with:
7777
languages: ${{ matrix.language }}
7878
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -95,4 +95,4 @@ jobs:
9595
./gradlew build
9696
9797
- name: Perform CodeQL Analysis
98-
uses: github/codeql-action/analyze@v2
98+
uses: github/codeql-action/analyze@v3

.github/workflows/docker-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- 'master'
88

99
env:
10-
JAVA_VERSION: 21
10+
JAVA_VERSION: 25
1111

1212
jobs:
1313
docker:

.github/workflows/docker-verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Docker Verify
33
on: [pull_request]
44

55
env:
6-
JAVA_VERSION: 21
6+
JAVA_VERSION: 25
77

88
jobs:
99
docker:

.github/workflows/releases.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defaults:
1010
shell: bash
1111

1212
env:
13-
JAVA_VERSION: 21
13+
JAVA_VERSION: 25
1414

1515
jobs:
1616

.github/workflows/wiki-sync.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Wiki Sync
2+
3+
on:
4+
push:
5+
branches:
6+
- 'develop'
7+
paths:
8+
- wiki/**
9+
- .github/workflows/wiki-sync.yaml
10+
11+
concurrency:
12+
group: sync-wiki
13+
cancel-in-progress: true
14+
15+
permissions:
16+
contents: write
17+
18+
jobs:
19+
sync-wiki:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: Andrew-Chen-Wang/github-wiki-action@v5.0.1

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
//Configure the JDK to Java 18 in settings
2+
//Configure the JDK to Java 25 in settings
33
"java.compile.nullAnalysis.mode": "disabled",
44
"java.format.settings.url": "meta/formatting/google-style-eclipse.xml",
55
"editor.formatOnSave": true,
66
"editor.formatOnPaste": true,
77
"java.format.enabled": true,
8-
}
8+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TJ-Bot
22

33
[![codefactor](https://img.shields.io/codefactor/grade/github/together-java/tj-bot)](https://www.codefactor.io/repository/github/together-java/tj-bot)
4-
![Java](https://img.shields.io/badge/Java-21-ff696c)
4+
![Java](https://img.shields.io/badge/Java-25-ff696c)
55
[![license](https://img.shields.io/github/license/Together-Java/TJ-Bot)](https://github.com/Together-Java/TJ-Bot/blob/master/LICENSE)
66
![GitHub release (latest by date)](https://img.shields.io/github/v/release/Together-Java/TJ-Bot?label=release)
77

0 commit comments

Comments
 (0)