8 Commits
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Setup just
uses: ./
env:
@@ -29,7 +29,7 @@ jobs:
just-version: [0.5.11, 0.6.1, 0.7.3, 0.8.7, 0.9.9, 0.10.7, 0.11.2, 1.5.0, 1.23.0, 1.40.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Run self
uses: ./
with:
+6 -6
View File
@@ -1,6 +1,6 @@
# 🤖 `setup-just` action
[![Build Status](https://img.shields.io/github/actions/workflow/status/extractions/setup-just/build.yaml?branch=trunk)](https://github.com/extractions/setup-just/actions/workflows/build.yaml)
[![Build Status](https://github.com/extractions/setup-just/actions/workflows/build.yaml/badge.svg)](https://github.com/extractions/setup-just/actions/workflows/build.yaml)
This GitHub Action will install a release of the
[just](https://github.com/casey/just) command runner for you.
@@ -12,24 +12,24 @@ 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@v3
- uses: extractions/setup-just@v4
```
If you want a specific version of `just` you can specify this by passing the
`just-version` input.
```yaml
- uses: extractions/setup-just@v3
- uses: extractions/setup-just@v4
with:
just-version: '1.40.0'
just-version: '1.46.0'
```
To avoid rate-limiting, the default Github token available to all actions, is
To avoid rate-limiting, the default Github token (available to all actions) is
automatically used to authenticate calls to Github. To override it, pass the
input `github-token`.
```yaml
- uses: extractions/setup-just@v3
- uses: extractions/setup-just@v4
with:
github-token: ${{ secrets.MY_GITHUB_TOKEN }}
```
+1 -1
View File
@@ -14,7 +14,7 @@ inputs:
runs:
using: composite
steps:
- uses: extractions/setup-crate@v1
- uses: extractions/setup-crate@7577c1bdf2d95e6d65d532788f35ed79d4b1dda2 # v2.0.1
with:
repo: casey/just
version: ${{ inputs.just-version }}