Skip to content

Commit 2a27661

Browse files
committed
[gha] Update github actions
1 parent b1ca2eb commit 2a27661

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [workflow_dispatch, push, pull_request]
55
permissions: read-all
66

77
concurrency:
8-
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.sha }}
8+
group: ${{ github.workflow }}-${{ github.ref }}
99
cancel-in-progress: true
1010

1111
jobs:
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
cache: [maven]
1818
distribution: [temurin]
19-
java: [17, 21, 24, 25-ea]
19+
java: [17, 21, 25, 26-ea]
2020
os: [macos-latest, ubuntu-latest, windows-latest]
2121
fail-fast: false
2222
max-parallel: 6
@@ -31,4 +31,4 @@ jobs:
3131
distribution: ${{ matrix.distribution }}
3232
java-version: ${{ matrix.java }}
3333
- name: Test with Maven
34-
run: ./mvnw test -B -V --no-transfer-progress -D"license.skip=true"
34+
run: ./mvnw test --batch-mode --no-transfer-progress --show-version -D"license.skip=true"

.github/workflows/codeql.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- cron: '43 10 * * 2'
1010

1111
concurrency:
12-
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.sha }}
12+
group: ${{ github.workflow }}-${{ github.ref }}
1313
cancel-in-progress: true
1414

1515
jobs:
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
cache: maven
3838
distribution: 'temurin'
39-
java-version: 21
39+
java-version: 25
4040

4141
- name: Initialize CodeQL
4242
uses: github/codeql-action/init@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4

.github/workflows/sonatype.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
permissions: read-all
99

1010
concurrency:
11-
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.sha }}
11+
group: ${{ github.workflow }}-${{ github.ref }}
1212
cancel-in-progress: true
1313

1414
jobs:
@@ -23,9 +23,9 @@ jobs:
2323
with:
2424
cache: maven
2525
distribution: temurin
26-
java-version: 21
26+
java-version: 25
2727
- name: Deploy to Sonatype
28-
run: ./mvnw deploy -DskipTests -B -V --no-transfer-progress --settings ./.mvn/settings.xml -Dlicense.skip=true
28+
run: ./mvnw deploy --batch-mode --no-transfer-progress --settings ./.mvn/settings.xml --show-version -Dlicense.skip=true -DskipTests
2929
env:
3030
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
3131
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}

0 commit comments

Comments
 (0)