Skip to content

Commit

Permalink
Update gradlebuild.yml to use jdk 17
Browse files Browse the repository at this point in the history
  • Loading branch information
ndc-istat authored Aug 5, 2024
1 parent bffb03d commit 7206f3d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/gradlebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: checkout code
uses: actions/checkout@v2
- name: caching
Expand All @@ -39,6 +44,11 @@ jobs:
owasp:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: checkout code
uses: actions/checkout@v2
- name: Dependency Check
Expand All @@ -54,6 +64,11 @@ jobs:
- build
- owasp
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Checkout repository
uses: actions/checkout@v2
- name: Log in to the Github Container registry
Expand Down Expand Up @@ -87,6 +102,11 @@ jobs:
needs:
- publish
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Checkout repository
uses: actions/checkout@v2
- name: extract image
Expand Down

0 comments on commit 7206f3d

Please sign in to comment.