Skip to content

Commit 6251799

Browse files
committed
Fix up workflow branch and java versions
1 parent afe36cd commit 6251799

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/gradle_branch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Branch
55

66
on:
77
push:
8-
branches-ignore: [ '3.x' ]
8+
branches-ignore: [ '4.x' ]
99

1010
permissions:
1111
contents: read
@@ -16,11 +16,11 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19-
- name: Set up JDK 11
19+
- name: Set up JDK 25
2020
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
2121
with:
2222
distribution: 'zulu'
23-
java-version: '11'
23+
java-version: '25'
2424
- name: Cache Gradle packages
2525
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
2626
with:

.github/workflows/gradle_pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Pull Request
55

66
on:
77
pull_request:
8-
branches: [ 3.x ]
8+
branches: [ 4.x ]
99

1010
permissions:
1111
contents: read
@@ -16,11 +16,11 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19-
- name: Set up JDK 11
19+
- name: Set up JDK 25
2020
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
2121
with:
2222
distribution: 'zulu'
23-
java-version: '11'
23+
java-version: '25'
2424
- name: Cache Gradle packages
2525
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
2626
with:

.github/workflows/gradle_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ name: Release
66
on:
77
release:
88
types: [ released, prereleased ]
9-
branches: [ '3.x' ]
9+
branches: [ '4.x' ]
1010
tags:
11-
- 'v3.*.*'
11+
- 'v4.*.*'
1212

1313
permissions:
1414
contents: read
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
2828
with:
2929
distribution: 'zulu'
30-
java-version: '11'
30+
java-version: '25'
3131
- name: Cache Gradle packages
3232
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
3333
with:

.github/workflows/gradle_snapshot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Snapshot
55

66
on:
77
push:
8-
branches: [ '3.x' ]
8+
branches: [ '4.x' ]
99

1010
permissions:
1111
contents: read
@@ -22,11 +22,11 @@ jobs:
2222
CI_BUILD_NUMBER: ${{ github.run_number }}
2323
steps:
2424
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
25-
- name: Set up JDK 11
25+
- name: Set up JDK 25
2626
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
2727
with:
2828
distribution: 'zulu'
29-
java-version: '11'
29+
java-version: '25'
3030
- name: Cache Gradle packages
3131
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
3232
with:

0 commit comments

Comments
 (0)