Skip to content

Commit

Permalink
Merge pull request #4774 from malinthar/add-ls-simulator
Browse files Browse the repository at this point in the history
Fix simulator workflows to run with JDK17
  • Loading branch information
malinthar authored Aug 9, 2023
2 parents fb29400 + d09c735 commit 6d78dbc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/language_server_simulator_fhir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
with:
ref: ${{ matrix.branch }}

- name: Set up JDK 11
uses: actions/setup-java@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
java-version: '17.0.7'

- name: Initialize sub-modules
run: git submodule update --init
Expand Down Expand Up @@ -77,6 +77,6 @@ jobs:
\"event_type\": \"notify-simulator-failure\",
\"client_payload\": {
\"branch\": \"${{ matrix.branch }}\",
\"runId\":\"${{github.run_id}}\"
\"runId\":\"${{ github.run_id }}\"
}
}"
8 changes: 4 additions & 4 deletions .github/workflows/language_server_simulator_nballerina.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
with:
ref: ${{ matrix.branch }}

- name: Set up JDK 11
uses: actions/setup-java@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
java-version: '17.0.7'

- name: Initialize sub-modules
run: git submodule update --init
Expand Down Expand Up @@ -77,6 +77,6 @@ jobs:
\"event_type\": \"notify-simulator-failure\",
\"client_payload\": {
\"branch\": \"${{ matrix.branch }}\",
\"runId\":\"${{github.run_id}}\"
\"runId\":\"${{ github.run_id }}\"
}
}"

0 comments on commit 6d78dbc

Please sign in to comment.