Skip to content

Commit 1f3028e

Browse files
committed
Match workflow branch targets
1 parent 426fd74 commit 1f3028e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/add-label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
issues:
55
types: [opened]
66
branches:
7-
- master
7+
- '1.21.5'
88
pull_request:
99
types: [opened]
1010
branches:
11-
- master
11+
- '1.21.5'
1212

1313
permissions:
1414
issues: write

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build Lambda
33
on:
44
push:
55
branches:
6-
- 'master'
6+
- '1.21.5'
77
pull_request:
88

99
jobs:

.github/workflows/publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
- name: Checkout Repository
1313
uses: actions/checkout@v4
1414

15-
- name: Set up JDK 17
15+
- name: Set up JDK 21
1616
uses: actions/setup-java@v4
1717
with:
1818
distribution: 'temurin'
19-
java-version: '17'
19+
java-version: '21'
2020

2121
- name: Build Dokka Documentation
2222
run: ./gradlew dokkaHtmlMultiModule

.github/workflows/publish-maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ jobs:
5656
- name: Checkout Repository
5757
uses: actions/checkout@v4
5858

59-
- name: Set up JDK 17
59+
- name: Set up JDK 21
6060
uses: actions/setup-java@v4
6161
with:
6262
distribution: 'temurin'
63-
java-version: '17'
63+
java-version: '21'
6464

6565
- name: Publish to Maven
6666
run: ./gradlew publish -PreposiliteUsername=${{ secrets.MAVEN_USER }} -PreposilitePassword=${{ secrets.MAVEN_TOKEN }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ jobs:
5858
- name: Checkout Repository
5959
uses: actions/checkout@v4.1.1
6060

61-
- name: Set-Up JDK 17
61+
- name: Set-Up JDK 21
6262
uses: actions/setup-java@v4
6363
with:
6464
distribution: 'temurin'
65-
java-version: '17'
65+
java-version: '21'
6666
architecture: x64
6767
cache: 'gradle'
6868

0 commit comments

Comments
 (0)