We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f04ebe commit b759144Copy full SHA for b759144
1 file changed
README.md
@@ -16,18 +16,18 @@ See [action.yml](action.yml)
16
Basic:
17
```yaml
18
steps:
19
-- uses: actions/checkout@latest
+- uses: actions/checkout@v1
20
- uses: actions/setup-java@v1
21
with:
22
- java-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)
+ java-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)
23
architecture: x64 // (x64 or x86) - defaults to x64
24
- run: java -cp java HelloWorldApp
25
```
26
27
From local file:
28
29
30
-- uses: actions/checkout@master
31
32
33
java-version: '4.0.0'
0 commit comments