Skip to content

Commit ed5dfaa

Browse files
committed
dev: update deps
Except for kaocha which currently has a serious enough bug that I'll hold off.
1 parent ddb029d commit ed5dfaa

File tree

7 files changed

+34
-30
lines changed

7 files changed

+34
-30
lines changed

.github/workflows/code-coverage.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ jobs:
1919
restore-keys: $${ runner.os }}-cljdeps-
2020

2121
- name: Setup Java
22-
uses: actions/setup-java@v1
22+
uses: actions/setup-java@v2
2323
with:
24-
java-version: 11
24+
distribution: 'adopt'
25+
java-version: '11'
2526

2627
- name: Install babashka
2728
run: curl -s https://raw.githubusercontent.com/borkdude/babashka/master/install | sudo bash

.github/workflows/libs-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ jobs:
2222
restore-keys: $${ runner.os }}-clj-libs-deps-
2323

2424
- name: Setup Java
25-
uses: actions/setup-java@v1
25+
uses: actions/setup-java@v2
2626
with:
27-
java-version: 11
27+
distribution: 'adopt'
28+
java-version: '11'
2829

2930
- name: Install planck
3031
run: |

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ jobs:
2828
restore-keys: $${ runner.os }}-cljdeps-release-
2929

3030
- name: Setup Java
31-
uses: actions/setup-java@v1
31+
uses: actions/setup-java@v2
3232
with:
33-
java-version: 11
33+
distribution: 'adopt'
34+
java-version: '11'
3435

3536
- name: Install Babashka
3637
run: curl -s https://raw.githubusercontent.com/borkdude/babashka/master/install | sudo bash

.github/workflows/unit-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ windows-latest, ubuntu-latest, macos-latest ]
11-
java: [ 8, 11 ]
11+
java: [ '8', '11' ]
1212

1313
name: ${{ matrix.os }},jdk ${{ matrix.java }}
1414

@@ -45,8 +45,9 @@ jobs:
4545
# Setup Java
4646
#
4747
- name: "Setup Java"
48-
uses: actions/setup-java@v1
48+
uses: actions/setup-java@v2
4949
with:
50+
distribution: 'adopt'
5051
java-version: ${{ matrix.java }}
5152

5253
#

deps.edn

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
;;
1313
;; ClojureScript version we test with (and support)
1414
;;
15-
:cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.773"}}}
15+
:cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.844"}}}
1616

1717
;;
1818
;; Test support
1919
;;
2020

2121
;; linting
22-
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2021.03.22"}}
22+
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2021.03.31"}}
2323
:main-opts ["-m" "clj-kondo.main"]}
2424

2525
:test-common {:extra-deps {org.clojure/test.check {:mvn/version "1.1.0"}}
@@ -64,7 +64,7 @@
6464
cli-matic/cli-matic {:mvn/version "0.4.3"}}}
6565

6666
:apply-import-vars {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}
67-
:extra-deps {metosin/malli {:mvn/version "0.3.1"}
67+
:extra-deps {metosin/malli {:mvn/version "0.4.0"}
6868
io.aviso/pretty {:mvn/version "0.1.37"}}
6969
:ns-default lread.apply-import-vars}
7070

@@ -97,7 +97,7 @@
9797
;;
9898
;; Deployment
9999
;;
100-
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.206"}}
100+
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.211"}}
101101
:exec-fn hf.depstar/jar
102102
:exec-args {:jar "target/rewrite-clj.jar"
103103
:jar-type :thin}}
@@ -116,7 +116,7 @@
116116
;;
117117
;; Maintenance support
118118
;;
119-
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "0.12.2"}
119+
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "0.12.4"}
120120
org.slf4j/slf4j-simple {:mvn/version "1.7.30"} ;; to rid ourselves of logger warnings
121121
}
122122
:main-opts ["-m" "antq.core"]}}}

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"devDependencies": {
3-
"karma": "^6.3.1",
3+
"karma": "^6.3.2",
44
"karma-chrome-launcher": "^3.1.0",
55
"karma-cljs-test": "^0.1.0",
66
"karma-junit-reporter": "^2.0.0",
77
"karma-spec-reporter": "^0.0.32",
8-
"shadow-cljs": "^2.11.25"
8+
"shadow-cljs": "^2.12.1"
99
}
1010
}

0 commit comments

Comments
 (0)