Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
emlyn committed Feb 10, 2025
1 parent a8e10a8 commit 0264471
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
image: clojure:lein-alpine

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4.2.2

- name: Cache maven dependencies
uses: actions/cache@v4
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
image: clojure:lein-alpine

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4.2.2

- name: Cache maven dependencies
uses: actions/cache@v4
Expand Down
23 changes: 12 additions & 11 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,24 @@

:profiles
{:dev
{:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.60"]
[com.bhauman/figwheel-main "0.2.18"]
[org.slf4j/slf4j-nop "2.0.6"]
[com.bhauman/rebel-readline-cljs "0.1.4"]
[org.clojure/core.rrb-vector "0.1.2"]]
{:dependencies [[org.clojure/clojure "1.12.0"]
[org.clojure/clojurescript "1.11.132"]
[com.bhauman/figwheel-main "0.2.20"]
[org.slf4j/slf4j-nop "2.0.16"]
[com.bhauman/rebel-readline-cljs "0.1.5"]
#_[org.clojure/core.rrb-vector "0.2.0"]]
:resource-paths ["target"]
;; need to add the compiled assets to the :clean-targets
:clean-targets ^{:protect false} ["target"]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
:1.11 {:dependencies [[org.clojure/clojure "1.11.1"]]}
:clj-kondo {:dependencies [[clj-kondo "2023.01.20"]
[com.fasterxml.jackson.core/jackson-core "2.14.1"]]}}
:1.11 {:dependencies [[org.clojure/clojure "1.11.4"]]}
:1.12 {:dependencies [[org.clojure/clojure "1.12.0"]]}
:antq {:dependencies [[com.github.liquidz/antq "RELEASE"]]}
:clj-kondo {:dependencies [[clj-kondo "2025.01.16"]
[com.fasterxml.jackson.core/jackson-core "2.18.2"]]}}

:plugins [;; Nice test output
#_[venantius/ultra "0.6.0" :exclusions [org.clojure/core.rrb-vector]]
Expand All @@ -41,13 +42,13 @@
[lein-cloverage "1.2.4"]

;; Code/style checks
[lein-cljfmt "0.8.2"]]
[lein-cljfmt "0.9.2"]]

;;:middleware [ultra.plugin/middleware]

:aliases {"checks" ["do" "check" ["cljfmt" "check"] "clj-kondo"]
"clj-kondo" ["with-profile" "+clj-kondo" "run" "-m" "clj-kondo.main" "--lint" "src" "test"]
"tests" ["with-profile" "+1.11:+1.10:+1.9:+1.8:+1.7" "test"]
"tests" ["with-profile" "+1.12:+1.11:+1.10:+1.9:+1.8:+1.7" "test"]
"outdated" ["with-profile" "antq" "run" "-m" "antq.core"]
"fig:build" ["trampoline" "run" "-m" "figwheel.main" "--build" "dev" "--repl"]
"fig:test" ["run" "-m" "figwheel.main" "-co" "test.cljs.edn" "-m" "same.test-runner"]
Expand Down

0 comments on commit 0264471

Please sign in to comment.