Skip to content

Commit

Permalink
upgrade deps and make var private
Browse files Browse the repository at this point in the history
  • Loading branch information
logseq-cldwalker committed Nov 30, 2023
1 parent 101bb7d commit be5edc6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Run the action on a test graph and publish
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build graph's SPA
uses: logseq/publish-spa@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Run the action on a test graph
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run github action
uses: logseq/publish-spa@main
Expand Down
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:aliases
{:clj-kondo
{:replace-deps {clj-kondo/clj-kondo {:mvn/version "2023.05.26"}}
{:replace-deps {clj-kondo/clj-kondo {:mvn/version "2023.10.20"}}
:main-opts ["-m" "clj-kondo.main"]}
:outdated
{:replace-deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}
Expand Down
2 changes: 1 addition & 1 deletion src/logseq/publish_spa.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
(println "Warning: Skipping :theme-mode since it is invalid. Must be 'light' or 'dark'.")
"light"))))

(def valid-colors
(def ^:private valid-colors
"From frontend.colors/color-list"
[:tomato :red :crimson :pink :plum :purple :violet :indigo :blue :cyan :teal :green :grass :orange :brown])

Expand Down

0 comments on commit be5edc6

Please sign in to comment.