From e33e0265a09d6d736e2ee1e0eb685ef1de4669ff Mon Sep 17 00:00:00 2001 From: Ross MacArthur Date: Fri, 14 Mar 2025 14:25:58 +0200 Subject: [PATCH] This is 3.0.0 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 018aef3..d00ae60 100644 --- a/README.md +++ b/README.md @@ -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 }} ```