Skip to content

Commit

Permalink
move to oracle temporary as temurin is 22
Browse files Browse the repository at this point in the history
  • Loading branch information
commjoen committed Oct 22, 2024
1 parent cce582b commit c6ccfef
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: "23"
distribution: "temurin"
distribution: "oracle"
- name: run mvn clean package
run: ./mvnw clean package -Ddependency-check.skip=true -Dmaven.test.skip=true
- name: Perform CodeQL Analysis
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: "23"
distribution: "temurin"
distribution: "oracle"
cache: "maven"
- name: Navigate to test script and run
run: cd .github/scripts && bash docker-create.sh -t
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dast-zap-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: "23"
distribution: "temurin"
distribution: "oracle"
- name: Clean install
run: ./mvnw --no-transfer-progress clean install -DskipTests -Ddependency-check.skip -Dcyclonedx.skip=true -Dexec.skip
- name: Start wrongsecrets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java_swagger_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: "23"
distribution: "temurin"
distribution: "oracle"
- name: Clean install
run: ./mvnw --no-transfer-progress clean install -DskipTests -Ddependency-check.skip -Dcyclonedx.skip=true -Dexec.skip
- name: Compile javadoc
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 22
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: "22"
distribution: "temurin"
java-version: "23"
distribution: "oracle"
cache: "maven"
- name: checkstyle with Maven
run: ./mvnw --no-transfer-progress checkstyle:check
Expand All @@ -39,11 +39,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 22
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: "22"
distribution: "temurin"
java-version: "23"
distribution: "oracle"
cache: "maven"
- name: spotbugs with Maven
run: ./mvnw --no-transfer-progress package -DskipTests spotbugs:check
Expand All @@ -55,11 +55,11 @@ jobs:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 22
- name: Set up JDK 23
uses: actions/setup-java@v4
with:
java-version: "22"
distribution: "temurin"
java-version: "23"
distribution: "oracle"
cache: "maven"
- name: Test with Maven
run: ./mvnw --no-transfer-progress test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
cache: "npm"
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '22'
distribution: 'oracle'
java-version: '23'
- name: Install npm dependencies
run: npm install
- uses: actions/cache@v4
Expand Down

0 comments on commit c6ccfef

Please sign in to comment.