Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nenadalm committed Jan 6, 2024
1 parent 889c098 commit 0fa2e8b
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 84 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-java@v3.12.0
- uses: actions/checkout@v4.1.1
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '11'
- uses: DeLaGuardo/setup-clojure@master
with:
cli: '1.11.1.1403'
- uses: actions/cache@v3.3.1
cli: '1.11.1.1435'
- uses: actions/cache@v3.3.2
with:
path: '~/.m2'
key: "${{ runner.os }}-maven-${{ hashFiles('deps.edn') }}"
Expand All @@ -27,15 +27,15 @@ jobs:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-java@v3.12.0
- uses: actions/checkout@v4.1.1
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '11'
- uses: DeLaGuardo/setup-clojure@master
with:
cli: '1.11.1.1403'
- uses: actions/cache@v3.3.1
cli: '1.11.1.1435'
- uses: actions/cache@v3.3.2
with:
path: '~/.m2'
key: "${{ runner.os }}-maven-${{ hashFiles('deps.edn') }}"
Expand All @@ -47,7 +47,7 @@ jobs:
yarn install
yarn release
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.4.3
uses: JamesIves/github-pages-deploy-action@v4.5.0
with:
branch: gh-pages
folder: resources/public
12 changes: 6 additions & 6 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{:paths ["src" "test" "resources"]
:deps {org.clojure/clojurescript {:mvn/version "1.11.60"}
:deps {org.clojure/clojurescript {:mvn/version "1.11.121"}
reagent/reagent {:mvn/version "1.2.0"}
re-frame/re-frame {:mvn/version "1.3.0"}
metosin/jsonista {:mvn/version "0.3.7"}
day8.re-frame/re-frame-10x {:mvn/version "1.8.1"}
thheller/shadow-cljs {:mvn/version "2.25.2"}}
re-frame/re-frame {:mvn/version "1.4.2"}
metosin/jsonista {:mvn/version "0.3.8"}
day8.re-frame/re-frame-10x {:mvn/version "1.9.3"}
thheller/shadow-cljs {:mvn/version "2.26.2"}}
:aliases
{:dev {:extra-paths ["dev"]}
:cljfmt {:extra-deps {cljfmt/cljfmt {:mvn/version "0.9.2"}}
:main-opts ["-m" "cljfmt.main"]}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2023.07.13"}}
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2023.12.15"}}
:main-opts ["-m" "clj-kondo.main" "--lint" "src"]}}}
Loading

0 comments on commit 0fa2e8b

Please sign in to comment.