Skip to content

Commit d91bfae

Browse files
authored
doc: update example code with the latest gha version (#16)
1 parent dd310ad commit d91bfae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ This GitHub Action will install a release of the
1212
In most cases all you will need is the following in your workflow.
1313

1414
```yaml
15-
- uses: extractions/setup-just@v1
15+
- uses: extractions/setup-just@v2
1616
```
1717
1818
If you want a specific version of `just` you can specify this by passing the
1919
`just-version` input.
2020

2121
```yaml
22-
- uses: extractions/setup-just@v1
22+
- uses: extractions/setup-just@v2
2323
with:
2424
just-version: '1.4.0'
2525
```
@@ -29,15 +29,15 @@ automatically used to authenticate calls to Github. To override it, set the
2929
environment variable `GITHUB_TOKEN` or pass the input `github-token`.
3030

3131
```yaml
32-
- uses: extractions/setup-just@v1
32+
- uses: extractions/setup-just@v2
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3535
```
3636

3737
or
3838

3939
```yaml
40-
- uses: extractions/setup-just@v1
40+
- uses: extractions/setup-just@v2
4141
with:
4242
github-token: ${{ secrets.MY_GITHUB_TOKEN }}
4343
```

0 commit comments

Comments
 (0)