Skip to content

Commit

Permalink
v1 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny McCormick committed Aug 1, 2019
1 parent c0655dd commit 3e0c421
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -13,7 +13,7 @@ Basic:
```yaml
steps:
- uses: actions/checkout@latest
- uses: actions/setup-java@latest
- uses: actions/setup-java@v1
with:
version: 9.0.4 // The JDK version to make available on the path. Takes a whole or semver Jdk version, or 1.x syntax (e.g. 1.8 => Jdk 8.x)
architecture: x64 // (x64 or x86) - defaults to x64
Expand All @@ -24,7 +24,7 @@ From local file:
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/setup-java@master
- uses: actions/setup-java@v1
with:
version: 4.0.0
architecture: x64
Expand All @@ -43,7 +43,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Setup java
uses: actions/setup-java@master
uses: actions/setup-java@v1
with:
version: ${{ matrix.java }}
architecture: x64
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "setup-java",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"description": "setup java action",
"main": "lib/setup-java.js",
Expand Down

0 comments on commit 3e0c421

Please sign in to comment.