Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
just-sultanov committed Nov 12, 2019
1 parent b833927 commit 335c694
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 16 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
container:
image: borkdude/clj-kondo
steps:
- uses: actions/checkout@v1
- name: Run linter
run: clj-kondo --lint src:test
uses: DeLaGuardo/clojure-lint-action@v1
with:
clj-kondo-args: --lint src:test
github_token: ${{ secrets.GITHUB_TOKEN }}

build:
needs: lint
Expand All @@ -24,8 +25,6 @@ jobs:
matrix:
java: ['1.8', '11', '12', '13']
name: Testing on java ${{ matrix.java }}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- name: Git checkout
uses: actions/checkout@v1
Expand All @@ -36,9 +35,9 @@ jobs:
java-version: ${{ matrix.java }}

- name: Setup clojure
uses: DeLaGuardo/setup-clojure@1.0
uses: DeLaGuardo/setup-clojure@2.0
with:
tools-deps: '1.10.1.469'
tools-deps: '1.10.1.483'

- name: Run clean
run: make clean
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
container:
image: borkdude/clj-kondo
steps:
- uses: actions/checkout@v1
- name: Run linter
run: clj-kondo --lint src:test
uses: DeLaGuardo/clojure-lint-action@v1
with:
clj-kondo-args: --lint src:test
github_token: ${{ secrets.GITHUB_TOKEN }}


test:
Expand All @@ -35,9 +36,9 @@ jobs:
java-version: ${{ matrix.java }}

- name: Setup clojure
uses: DeLaGuardo/setup-clojure@1.0
uses: DeLaGuardo/setup-clojure@2.0
with:
tools-deps: '1.10.1.469'
tools-deps: '1.10.1.483'

- name: Run clean
run: make clean
Expand Down Expand Up @@ -65,9 +66,9 @@ jobs:
java-version: '13'

- name: Setup clojure
uses: DeLaGuardo/setup-clojure@1.0
uses: DeLaGuardo/setup-clojure@2.0
with:
tools-deps: '1.10.1.469'
tools-deps: '1.10.1.483'

- name: Run clean
run: make clean
Expand Down
4 changes: 4 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ deploy Deploy to clojars

=== Changelog

===== v0.4.2

* tools.deps.alpha library updated to https://github.com/clojure/tools.deps.alpha/blob/master/CHANGELOG.md[0.8.584]

===== v0.4.0

* tools.deps.alpha library updated to https://github.com/clojure/tools.deps.alpha/blob/master/CHANGELOG.md[0.8.578]
Expand Down
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{:paths ["src"]

:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/tools.deps.alpha {:mvn/version "0.8.578"}
org.clojure/tools.deps.alpha {:mvn/version "0.8.584"}
javax.xml.bind/jaxb-api {:mvn/version "2.3.1"}
org.clojure/core.rrb-vector {:mvn/version "0.1.0"}}
org.clojure/core.rrb-vector {:mvn/version "0.1.1"}}

:aliases {:repl {:extra-deps {nrepl {:mvn/version "0.6.0"}
com.bhauman/rebel-readline {:mvn/version "0.1.4"}}
Expand Down

0 comments on commit 335c694

Please sign in to comment.