We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3fb46b commit 2681e89Copy full SHA for 2681e89
1 file changed
README.md
@@ -12,6 +12,7 @@ See [action.yml](action.yml)
12
Basic:
13
```yaml
14
actions:
15
+- uses: actions/checkout@latest
16
- uses: actions/setup-java@latest
17
with:
18
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)
@@ -22,6 +23,7 @@ actions:
22
23
From local file:
24
25
26
27
28
29
version: 4.0.0
@@ -39,6 +41,7 @@ jobs:
39
41
java: [ 1.6, 9.0.x, 12.0.2 ]
40
42
name: Java ${{ matrix.java }} sample
43
44
+ - uses: actions/checkout@latest
45
- name: Setup java
46
uses: actions/setup-java@latest
47
0 commit comments