Skip to content

Commit a3a2ca1

Browse files
committed
update readme
1 parent 3980383 commit a3a2ca1

2 files changed

Lines changed: 9 additions & 11 deletions

File tree

readme.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ A collection of GitHub actions for Java projects.
44

55
## Actions
66

7-
### Setup Java and Update Dependencies
8-
9-
### Setup Node and Install Dependencies
7+
### Setup Java and Install Dependencies
108

119
This action will set up the Java SDK and install all dependencies.
1210

13-
Example:
11+
#### Example:
1412

1513
```yaml
1614
- uses: actions/checkout@v3
@@ -20,12 +18,13 @@ Example:
2018
2119
#### Inputs
2220
23-
Following inputs can be used as `step.with` keys
21+
The following inputs can be used as `step.with` keys:
2422

25-
| Name | Required/Default | Description |
26-
|----------------------|------------------|---------------------|
27-
| `java-version` | `17` | Java Version |
28-
| `distribution` | `corretto` | Java Distribution |
23+
| Name | Required/Default | Description |
24+
|------------------------|------------------|---------------------------|
25+
| `working-directory` | `.` | The working directory |
26+
| `java-version` | `17` | Java Version |
27+
| `distribution` | `corretto` | Java Distribution |
2928

3029

3130
## Versioning

setup-and-install/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
name: 'Setup Java and install dependencies'
2-
description: 'Setup Java SDK, fetch and cache packages dependencies.'
2+
description: 'Setup Java SDK, fetch and cache packages dependencies'
33

44
inputs:
55
working-directory:
66
description: 'The working directory'
7-
required: false
87
default: '.'
98
java-version:
109
default: '17'

0 commit comments

Comments
 (0)