This is 4.0.0

This commit is contained in:
Ross MacArthur
2026-04-05 11:09:11 +02:00
parent 3ed9febd41
commit 53165ef7e7
+3 -3
View File
@@ -12,14 +12,14 @@ This GitHub Action will install a release of the
In most cases all you will need is the following in your workflow. In most cases all you will need is the following in your workflow.
```yaml ```yaml
- uses: extractions/setup-just@v3 - uses: extractions/setup-just@v4
``` ```
If you want a specific version of `just` you can specify this by passing the If you want a specific version of `just` you can specify this by passing the
`just-version` input. `just-version` input.
```yaml ```yaml
- uses: extractions/setup-just@v3 - uses: extractions/setup-just@v4
with: with:
just-version: '1.46.0' just-version: '1.46.0'
``` ```
@@ -29,7 +29,7 @@ automatically used to authenticate calls to Github. To override it, pass the
input `github-token`. input `github-token`.
```yaml ```yaml
- uses: extractions/setup-just@v3 - uses: extractions/setup-just@v4
with: with:
github-token: ${{ secrets.MY_GITHUB_TOKEN }} github-token: ${{ secrets.MY_GITHUB_TOKEN }}
``` ```