This is 3.0.0

This commit is contained in:
Ross MacArthur
2025-03-15 15:10:38 +02:00
parent e8fa8d355d
commit e33e0265a0
+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.
```yaml
- uses: extractions/setup-just@v2
- uses: extractions/setup-just@v3
```
If you want a specific version of `just` you can specify this by passing the
`just-version` input.
```yaml
- uses: extractions/setup-just@v2
- uses: extractions/setup-just@v3
with:
just-version: '1.40.0'
```
@@ -29,7 +29,7 @@ automatically used to authenticate calls to Github. To override it, pass the
input `github-token`.
```yaml
- uses: extractions/setup-just@v2
- uses: extractions/setup-just@v3
with:
github-token: ${{ secrets.MY_GITHUB_TOKEN }}
```