Skip to content

Commit 2e042ff

Browse files
authored
Merge branch 'develop' into RenameFileExtensionValidation
2 parents a338576 + 810a2e8 commit 2e042ff

28 files changed

Lines changed: 1634 additions & 46 deletions

.github/actions/deploy-release/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
uses: actions/setup-java@v4
3838
with:
3939
distribution: 'sapmachine'
40-
java-version: '17'
40+
java-version: '21'
4141
cache: maven
4242
server-id: central
4343
server-username: MAVEN_CENTRAL_USER

.github/actions/deploy/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ runs:
3434
echo "altDeploymentRepository: ${{inputs.server-id}}::default::${{inputs.repository-url}}"
3535
shell: bash
3636

37-
- name: Setup Java 17
37+
- name: Setup Java 21
3838
uses: actions/setup-java@v4
3939
with:
4040
distribution: sapmachine
41-
java-version: '17'
41+
java-version: '21'
4242
server-id: ${{ inputs.server-id }}
4343
server-username: CAP_DEPLOYMENT_USER
4444
server-password: CAP_DEPLOYMENT_PASS

.github/workflows/blackduck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
with:
2424
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2525

26-
- name: Set up JDK 17
26+
- name: Set up JDK 21
2727
uses: actions/setup-java@v4
2828
with:
29-
java-version: '17'
29+
java-version: '21'
3030
distribution: 'temurin'
3131
cache: maven
3232

.github/workflows/cfdeploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
with:
4242
ref: ${{ github.event.inputs.deploy_branch }}
4343

44-
- name: Set up Java 17
44+
- name: Set up Java 21
4545
uses: actions/setup-java@v3
4646
with:
47-
java-version: 17
47+
java-version: 21
4848
distribution: 'temurin'
4949

5050
- name: Build and package 🔨
@@ -137,10 +137,10 @@ jobs:
137137
with:
138138
ref: develop
139139

140-
- name: Set up Java 17
140+
- name: Set up Java 21
141141
uses: actions/setup-java@v3
142142
with:
143-
java-version: 17
143+
java-version: 21
144144
distribution: 'temurin'
145145

146146
- name: Verify and Checkout Deploy Branch 🔄

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
- name: Checkout repository
3030
uses: actions/checkout@v6
3131

32-
- name: Set up JDK 17
32+
- name: Set up JDK 21
3333
uses: actions/setup-java@v4
3434
with:
3535
distribution: 'temurin'
36-
java-version: '17'
36+
java-version: '21'
3737

3838
- name: Initialize CodeQL
3939
uses: github/codeql-action/init@v4

.github/workflows/demo-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13-
- name: Set up JDK 17
13+
- name: Set up JDK 21
1414
uses: actions/setup-java@v4
1515
with:
16-
java-version: '17'
16+
java-version: '21'
1717
distribution: 'temurin'
1818
cache: maven
1919
- name: Build with Maven

.github/workflows/internalArticatory.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Internal Artifactory snapshot deploy
22

33
env:
4-
JAVA_VERSION: '17'
4+
JAVA_VERSION: '21'
55
MAVEN_VERSION: '3.6.3'
66
ARTIFACTORY_URL: ${{ secrets.ARTIFACTORY_URL }}
77

.github/workflows/main-build-and-deploy-oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Deploy to Maven Central
22

33
env:
4-
JAVA_VERSION: '17'
4+
JAVA_VERSION: '21'
55
MAVEN_VERSION: '3.6.3'
66

77
on:

.github/workflows/main-build-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Deploy to Artifactory on pre-released
22

33
env:
4-
JAVA_VERSION: '17'
4+
JAVA_VERSION: '21'
55
MAVEN_VERSION: '3.6.3'
66
DEPLOY_REPOSITORY_URL: 'https://common.repositories.cloud.sap/artifactory/cap-sdm-java'
77
POM_FILE: '.flattened-pom.xml'

.github/workflows/main-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Main build and snapshot deploy
22

33
env:
4-
JAVA_VERSION: '17'
4+
JAVA_VERSION: '21'
55
MAVEN_VERSION: '3.6.3'
66

77
on:
@@ -17,7 +17,7 @@ jobs:
1717
contents: read
1818
strategy:
1919
matrix:
20-
java-version: [ 17 ]
20+
java-version: [ 21 ]
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v6

0 commit comments

Comments
 (0)