Skip to content

Commit 74e4f43

Browse files
committed
internal deps: update
1 parent 9ced344 commit 74e4f43

File tree

9 files changed

+104
-104
lines changed

9 files changed

+104
-104
lines changed

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111

1212
- name: Clojure deps cache
13-
uses: actions/cache@v2
13+
uses: actions/cache@v3
1414
with:
1515
path: |
1616
~/.m2/repository

.github/workflows/libs-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fetch-depth: 0
1313

1414
- name: Clojure deps cache
15-
uses: actions/cache@v2
15+
uses: actions/cache@v3
1616
with:
1717
path: |
1818
~/.m2/repository

.github/workflows/native-image-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# Caches
2222
#
2323
- name: Clojure deps cache
24-
uses: actions/cache@v2
24+
uses: actions/cache@v3
2525
with:
2626
path: |
2727
~/.m2/repository

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: fregante/setup-git-user@v1
2222

2323
- name: Clojure deps cache
24-
uses: actions/cache@v2
24+
uses: actions/cache@v3
2525
with:
2626
path: |
2727
~/.m2/repository

.github/workflows/unit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# Caches
2727
#
2828
- name: Clojure deps cache
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3
3030
with:
3131
path: |
3232
~/.m2/repository
@@ -35,7 +35,7 @@ jobs:
3535
restore-keys: $${ runner.os }}-cljdeps-
3636

3737
- name: Node modules cache
38-
uses: actions/cache@v2
38+
uses: actions/cache@v3
3939
with:
4040
path: ./node_modules
4141
key: $${ runner.os }}-node-${{ hashFiles('package-lock.json') }}

deps.edn

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
;;
2323
:lint-cache {:replace-paths ["src"]} ;; when building classpath we want to exclude resources
2424
;; so we do not pick up our own clj-kondo config exports
25-
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2022.03.04"}}
25+
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2022.03.09"}}
2626
:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}
2727
:main-opts ["-m" "clj-kondo.main"]}
2828

@@ -56,7 +56,7 @@
5656
:extra-paths ["target/test-doc-blocks/test"]}
5757

5858
;; kaocha for testing clojure versions>= v1.9
59-
:kaocha {:extra-deps {lambdaisland/kaocha {:mvn/version "1.63.998"}
59+
:kaocha {:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}
6060
lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"}
6161
lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"}}
6262
:main-opts ["-m" "kaocha.runner"]}
@@ -105,7 +105,7 @@
105105

106106
:sci-test {:extra-paths ["target/generated/sci-test/src"]
107107
:extra-deps {lread/sci-test {:git/url "https://github.com/lread/sci-test.git"
108-
:sha "ea4bddfb91ede7e0e70cb4c7207a9813186a933a" }}}
108+
:sha "929fb7d5ba937abe62b2085d193b5e3d43ce616e"}}}
109109

110110
:native-test {:extra-paths ["target/generated/graal"]}
111111

@@ -122,16 +122,16 @@
122122

123123
;;
124124
;; Deployment
125-
;;
126-
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.8.0" :git/sha "e3e3532"}
125+
;
126+
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.8.1" :git/sha "7d40500"}
127127
io.github.slipset/deps-deploy {:sha "d1fac08888ec8beda0579d3071bb9f804a1d446c"}
128128
com.camsaul/whitespace-linter {:mvn/version "2022.01.27.04.43"}}
129129
:ns-default build}
130130

131131
;;
132132
;; Maintenance support
133133
;;
134-
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "1.5.1"}
134+
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "1.6.0"}
135135
org.slf4j/slf4j-simple {:mvn/version "1.7.36"} ;; to rid ourselves of logger warnings
136136
}
137137
:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}

0 commit comments

Comments
 (0)