Skip to content

Commit 0bb572a

Browse files
authored
test & ci: bump deps (#375)
Of note: bumping from jdk 23 to 24 for CI matrix
1 parent b552d76 commit 0bb572a

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

deps.edn

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
;;
3030
:nrepl
3131
{:extra-deps {nrepl/nrepl {:mvn/version "1.3.1"}
32-
cider/cider-nrepl {:mvn/version "0.52.1"}}
32+
cider/cider-nrepl {:mvn/version "0.53.2"}}
3333
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]}
3434

3535
:flowstorm
@@ -157,7 +157,7 @@
157157
;;
158158
;; Deployment
159159
;;
160-
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.7"}}
160+
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.8"}}
161161
:extra-paths ["src" "build"]
162162
:ns-default build}
163163

package-lock.json

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"karma-cljs-test": "^0.1.0",
77
"karma-junit-reporter": "^2.0.0",
88
"karma-spec-reporter": "^0.0.36",
9-
"shadow-cljs": "^2.28.21"
9+
"shadow-cljs": "^2.28.22"
1010
}
1111
}

script/ci_unit_tests.clj

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
"ubuntu"))
2020

2121
;; matrix params to be used on ci
22-
(def ^:private os-jdks {"ubuntu" ["8" "11" "17" "21" "23"]
22+
(def ^:private os-jdks {"ubuntu" ["8" "11" "17" "21" "24"]
2323
;; macOS on GitHub Actions is now arm-based and does not include jdk8
24-
"macos" ["11" "17" "21" "23"]
25-
"windows" ["8" "11" "17" "21" "23"]})
24+
"macos" ["11" "17" "21" "24"]
25+
"windows" ["8" "11" "17" "21" "24"]})
2626
(def ^:private all-oses (keys os-jdks))
2727

2828
(defn- test-tasks []

0 commit comments

Comments
 (0)