From cdf595448e49b7c3a6f12c83d299628994941f18 Mon Sep 17 00:00:00 2001 From: Daw-Ran Liou Date: Thu, 20 Jan 2022 13:55:09 -0800 Subject: [PATCH] Update references in README to v2 This commit updates the various references of `v1` and `v2-beta` to `v2. --- docs.lisp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs.lisp b/docs.lisp index 1a7b7cf..1a670ff 100644 --- a/docs.lisp +++ b/docs.lisp @@ -95,11 +95,11 @@ jobs: LISP: ${{ matrix.lisp }} steps: - - uses: actions/checkout@v1 - - uses: 40ants/setup-lisp@v1 + - uses: actions/checkout@v2 + - uses: 40ants/setup-lisp@v2 with: asdf-system: cl-info - - uses: 40ants/run-tests@v2-beta + - uses: 40ants/run-tests@v2 with: asdf-system: cl-info ``` @@ -107,7 +107,7 @@ jobs: The part, corresponding to an action call is: ```yaml -- uses: 40ants/setup-lisp@v1 +- uses: 40ants/setup-lisp@v2 with: asdf-system: cl-info ``` @@ -136,7 +136,7 @@ working with this action. However, should you need to use a different version instead, you can specify that via the `roswell-version` argument: ``` -- uses: 40ants/setup-lisp@v1 +- uses: 40ants/setup-lisp@v2 with: roswell-version: v21.10.14.111 ``` @@ -150,7 +150,7 @@ working with this action. However, should you need to use a different version instead, you can specify that via the `asdf-version` argument: ``` -- uses: 40ants/setup-lisp@v1 +- uses: 40ants/setup-lisp@v2 with: asdf-version: 3.3.5.3 ``` @@ -164,7 +164,7 @@ working with this action. However, should you need to use a different version instead, you can specify that via the `qlot-version` argument: ``` -- uses: 40ants/setup-lisp@v1 +- uses: 40ants/setup-lisp@v2 with: qlot-version: 0.11.5 ``` @@ -201,8 +201,8 @@ env: QUICKLISP_DIST: ${{ matrix.quicklisp-dist }} steps: - - uses: actions/checkout@v1 - - uses: 40ants/setup-lisp@v1 + - uses: actions/checkout@v2 + - uses: 40ants/setup-lisp@v2 with: asdf-system: cl-info qlfile-template: | @@ -265,7 +265,7 @@ To make caching work, add such sections into your workflow file: echo $HOME/.roswell/bin >> $GITHUB_PATH echo .qlot/bin >> $GITHUB_PATH if: steps.cache.outputs.cache-hit == 'true' -- uses: 40ants/setup-lisp@v1 +- uses: 40ants/setup-lisp@v2 if: steps.cache.outputs.cache-hit != 'true' ```