Skip to content

Commit

Permalink
build: bump jdk on workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Oct 18, 2024
1 parent 0ae155f commit 5a72df9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
id: jdk-8
uses: actions/setup-java@v1
- name: Set up JDK 11
id: jdk-11
uses: actions/setup-java@v4
with:
java-version: 1.8
java-version: 11
distribution: 'zulu'
- name: Build
id: build
run: |
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
id: jdk-8
uses: actions/setup-java@v1
- name: Set up JDK 11
id: jdk-11
uses: actions/setup-java@v4
with:
java-version: 1.8
java-version: 11
distribution: 'zulu'
- name: Build
id: build
run: |
Expand Down

0 comments on commit 5a72df9

Please sign in to comment.