Skip to content

Commit 83beb99

Browse files
Merge pull request #15 from awesomejt-work/feature/AR-299_java23
Java 23 (sorta)
2 parents cc7687c + baf1b0e commit 83beb99

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/post_release.yaml renamed to .github/workflows/post_build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
name: Post Release Workflow
1+
name: Post Build Workflow
22

3-
run-name: Post Release Workflow -- ${{github.event.repository.name}}
3+
run-name: Post Build Workflow -- ${{github.event.repository.name}}
44

55
on:
66
workflow_dispatch:
77
push:
88
tags: '**'
99
jobs:
1010
post_release_actions:
11-
name: Post Release Action -- ${{github.ref_name}}
11+
name: Post Build Action -- ${{github.ref_name}}
1212
runs-on: ubuntu-24.04
1313
if: contains(github.ref_type, 'tag')
1414
steps:
15-
- name: IKMDEV Post Release Action
16-
uses: ikmdev/maven-post-release-action@main
15+
- name: IKMDEV Post Build Action
16+
uses: ikmdev/maven-post-build-action@v2
1717
with:
1818
github_token: ${{secrets.GITHUB_TOKEN}}
1919
ossrh_username: ${{secrets.OSSRH_TOKEN_USER}}

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/setup-java@v4
3232
with:
3333
distribution: 'zulu'
34-
java-version: '21'
34+
java-version: '23'
3535

3636
- name: Extract Maven GAV
3737
id: get_gav

.github/workflows/verify.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ jobs:
88
runs-on: ${{ matrix.platform }}
99
steps:
1010
- name: Check out repository
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Set up JDK
14-
uses: actions/setup-java@v3
14+
uses: actions/setup-java@v4
1515
with:
16-
distribution: 'temurin'
17-
java-version: 11
16+
distribution: 'zulu'
17+
java-version: 23
1818

1919
- name: Set up Maven
2020
uses: stCarolas/[email protected]
2121
with:
22-
maven-version: 3.9.4
22+
maven-version: 3.9.9
2323

2424
- name: Cache Maven packages
2525
uses: actions/cache@v3

.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.4/apache-maven-3.9.4-bin.zip
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
1818
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar

0 commit comments

Comments
 (0)