name: 'Setup just' author: 'Ross MacArthur' description: 'Install the just command runner' branding: icon: 'play' color: 'blue' inputs: just-version: description: 'A valid semver specifier of the just version to install' github-token: description: 'Github token to use to authenticate downloads' required: false default: ${{ github.token }} runs: using: composite steps: - uses: extractions/setup-crate@7577c1bdf2d95e6d65d532788f35ed79d4b1dda2 # v2.0.1 with: repo: casey/just version: ${{ inputs.just-version }} github-token: ${{ inputs.github-token }}