Skip to content

Commit

Permalink
Switch to setup-lisp@v3
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Dec 13, 2023
1 parent e0d35a5 commit f1c2487
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
12 changes: 12 additions & 0 deletions src/changelog.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,25 @@
"GITHUB_TOKEN"
"OSX")
:external-docs ("https://40ants.com/40ants-asdf-system/"))
(0.13.0 2023-12-14
"
Changed
=======
Jobs now use setup-lisp@v3 action where a fix to quicklisp-client is applied.
This fix makes ql:quickload work with package-inferred systems.
If you want to use this fix in your own environments, you can find
it [here](https://github.com/40ants/quicklisp-client-fix).
")
(0.12.0 2023-12-11
"
Changed
=======
Use `secrets.GITHUB_TOKEN` instead of `secrets.DEPLOY_TRIGGER_TOKEN` and set required scopes for the token.
This way you don't have to setup a special secret for each repository or an organization.
")
(0.11.0 2023-12-01
"
Expand Down
8 changes: 4 additions & 4 deletions src/core.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ it will generate `.github/workflows/linter.yml` with following content:
},
{
\"name\": \"Setup Common Lisp Environment\",
\"uses\": \"40ants/setup-lisp@v2\",
\"uses\": \"40ants/setup-lisp@v3\",
\"with\": {
\"asdf-system\": \"example\"
}
Expand Down Expand Up @@ -289,7 +289,7 @@ It will generate `.github/workflows/ci.yml` with following content:
},
{
\"name\": \"Setup Common Lisp Environment\",
\"uses\": \"40ants/setup-lisp@v2\",
\"uses\": \"40ants/setup-lisp@v3\",
\"with\": {
\"asdf-system\": \"example\"
}
Expand Down Expand Up @@ -439,7 +439,7 @@ It will generate `.github/workflows/docs.yml` with following content:
},
{
\"name\": \"Setup Common Lisp Environment\",
\"uses\": \"40ants/setup-lisp@v2\",
\"uses\": \"40ants/setup-lisp@v3\",
\"with\": {
\"asdf-system\": \"example\",
\"qlfile-template\": \"\"
Expand Down Expand Up @@ -514,7 +514,7 @@ modified .github/workflows/docs.yml
+ },
{
\"name\": \"Setup Common Lisp Environment\",
\"uses\": \"40ants/setup-lisp@v2\",
\"uses\": \"40ants/setup-lisp@v3\",
\"with\": {
\"asdf-system\": \"40ants-ci\",
\"qlfile-template\": \"\"
Expand Down
2 changes: 1 addition & 1 deletion src/jobs/lisp-job.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
(make-cache-steps job)
(list
(action "Setup Common Lisp Environment"
"40ants/setup-lisp@v2"
"40ants/setup-lisp@v3"
:asdf-system (asdf-system job)
:asdf-version (asdf-version job)
:roswell-version (roswell-version job)
Expand Down

0 comments on commit f1c2487

Please sign in to comment.