Skip to content

Commit

Permalink
Merge pull request #268 from ShiftLeftSecurity/claudiu/ci/jdk-version
Browse files Browse the repository at this point in the history
Use JDK11 for GitHub Action builds
  • Loading branch information
ursachec authored Mar 27, 2023
2 parents 5526606 + 0b5381a commit a110e8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up JDK 8
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
java-version: '11'
cache: 'sbt'
- name: Compile and run tests
run: sbt clean +test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
run: echo $PGP_SECRET | base64 --decode | gpg --batch --import
env:
PGP_SECRET: ${{ secrets.PGP_SECRET }}
- name: Set up JDK 8
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
java-version: '11'
cache: 'sbt'
- name: Run tests
run: sbt clean +test
Expand Down

0 comments on commit a110e8d

Please sign in to comment.