Skip to content

Commit

Permalink
Make sure we use the same babashka and clj-kondo versions everywhere
Browse files Browse the repository at this point in the history
Once we are changing versions in some places, upgrade the to the
latest stable versions everywhere.

[Fixes #16]
  • Loading branch information
iarenaza committed Apr 12, 2024
1 parent ad0da87 commit d697f7c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
- name: Install Clojure Tools
uses: DeLaGuardo/setup-clojure@10.1
with:
clj-kondo: 2022.11.02
clj-kondo: 2024.03.13

- name: Install Babashka
run: |
curl --location --output bb.tar.gz "https://github.com/babashka/babashka/releases/download/v1.0.168/babashka-1.0.168-linux-amd64.tar.gz"
curl --location --output bb.tar.gz "https://github.com/babashka/babashka/releases/download/v1.3.189/babashka-1.3.189-linux-amd64.tar.gz"
tar xf bb.tar.gz
chmod +x ./bb
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file. This change
- [cli]: Fixed the cli http client hiding certain failed http request errors [issue #21]
- [auth]: Upgraded buddy-auth.jwt-oidc to latest version (includes several fixes)
- [frontend profile]: Upgrade duct/compiler.sass to 0.3.0 [issue #22][#issue 20]
- [ci][core profile] Upgrade clj-kondo and babashka versions
- [aws profile] Make sure we use the same babashka version as the core profile [issue #16]

## [0.1.10] - 2023-11-13
- Fix CLI complaining settings file is not compatible when it really is.
Expand Down
2 changes: 1 addition & 1 deletion bb.edn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:paths ["src" "resources"]
:min-bb-version "1.0.168"
:min-bb-version "1.3.189"
:deps {metosin/malli {:mvn/version "0.8.9"}
org.babashka/cli {:mvn/version "0.4.38"}
babashka/fs {:mvn/version "0.2.12"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eu -o pipefail

BABASHKA_VERSION=0.10.163
BABASHKA_VERSION=1.3.189
INSTALL_DIR="/usr/local/babashka"
DOWNLOAD_DIR="${INSTALL_DIR}/${BABASHKA_VERSION}"
DOWNLOAD_PATH="${DOWNLOAD_DIR}/bb.tar.gz"
Expand Down
2 changes: 1 addition & 1 deletion resources/bootstrap/profiles/core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ FROM base AS dev
COPY --from=eclipse-temurin:19-jdk $JAVA_HOME $JAVA_HOME

ENV LEIN_VERSION=2.10.0
ENV CLJ_KONDO_VERSION=2023.09.07
ENV CLJ_KONDO_VERSION=2024.03.13
ENV BINARIES_INSTALL_PATH=/usr/local/bin

RUN set -eux; \
Expand Down

0 comments on commit d697f7c

Please sign in to comment.