Update docs

This commit is contained in:
github-actions[bot] 2022-01-22 08:29:32 +00:00
parent c0fa487efb
commit de48902f5f

View file

@ -58,18 +58,18 @@ jobs:
LISP: ${{ matrix.lisp }} LISP: ${{ matrix.lisp }}
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- uses: 40ants/setup-lisp@v1 - uses: 40ants/setup-lisp@v2
with: with:
asdf-system: cl-info asdf-system: cl-info
- uses: 40ants/run-tests@v2-beta - uses: 40ants/run-tests@v2
with: with:
asdf-system: cl-info asdf-system: cl-info
``` ```
The part, corresponding to an action call is: The part, corresponding to an action call is:
```yaml ```yaml
- uses: 40ants/setup-lisp@v1 - uses: 40ants/setup-lisp@v2
with: with:
asdf-system: cl-info asdf-system: cl-info
``` ```
@ -96,7 +96,7 @@ working with this action. However, should you need to use a different version
instead, you can specify that via the `roswell-version` argument: instead, you can specify that via the `roswell-version` argument:
``` ```
- uses: 40ants/setup-lisp@v1 - uses: 40ants/setup-lisp@v2
with: with:
roswell-version: v21.10.14.111 roswell-version: v21.10.14.111
``` ```
@ -109,7 +109,7 @@ working with this action. However, should you need to use a different version
instead, you can specify that via the `asdf-version` argument: instead, you can specify that via the `asdf-version` argument:
``` ```
- uses: 40ants/setup-lisp@v1 - uses: 40ants/setup-lisp@v2
with: with:
asdf-version: 3.3.5.3 asdf-version: 3.3.5.3
``` ```
@ -122,7 +122,7 @@ working with this action. However, should you need to use a different version
instead, you can specify that via the `qlot-version` argument: instead, you can specify that via the `qlot-version` argument:
``` ```
- uses: 40ants/setup-lisp@v1 - uses: 40ants/setup-lisp@v2
with: with:
qlot-version: 0.11.5 qlot-version: 0.11.5
``` ```
@ -157,8 +157,8 @@ env:
QUICKLISP_DIST: ${{ matrix.quicklisp-dist }} QUICKLISP_DIST: ${{ matrix.quicklisp-dist }}
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- uses: 40ants/setup-lisp@v1 - uses: 40ants/setup-lisp@v2
with: with:
asdf-system: cl-info asdf-system: cl-info
qlfile-template: | qlfile-template: |
@ -222,7 +222,7 @@ To make caching work, add such sections into your workflow file:
echo $HOME/.roswell/bin >> $GITHUB_PATH echo $HOME/.roswell/bin >> $GITHUB_PATH
echo .qlot/bin >> $GITHUB_PATH echo .qlot/bin >> $GITHUB_PATH
if: steps.cache.outputs.cache-hit == 'true' if: steps.cache.outputs.cache-hit == 'true'
- uses: 40ants/setup-lisp@v1 - uses: 40ants/setup-lisp@v2
if: steps.cache.outputs.cache-hit != 'true' if: steps.cache.outputs.cache-hit != 'true'
``` ```
There are two important lines here. There are two important lines here.