Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
Update examples in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
joschi committed Mar 23, 2020
1 parent cd5fb30 commit 55ce17a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ steps:
- uses: actions/checkout@latest
- uses: joschi/setup-jdk@v1
with:
java-version: 'openjdk11' // The OpenJDK version to make available on the path
java-version: '11' // The OpenJDK version to make available on the path
architecture: 'x64' // defaults to 'x64'
- run: java -cp java HelloWorldApp
```
Expand All @@ -26,10 +26,10 @@ Matrix Testing:
```yaml
jobs:
build:
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 'openjdk8', 'openjdk11', 'openjdk13' ]
java: [ '8', '11', '13' ]
name: Java ${{ matrix.java }} sample
steps:
- uses: actions/checkout@master
Expand Down

0 comments on commit 55ce17a

Please sign in to comment.