From ed6d6bc5a7f05af0184d84d86e504f267bdf3106 Mon Sep 17 00:00:00 2001 From: Maxime Mouchet Date: Sat, 6 Jan 2024 23:19:54 +0100 Subject: [PATCH] agent: upgrade to caracal v0.15.3 to fix mangled lines on stdout --- .github/workflows/tests.yml | 2 +- dockerfiles/iris-agent.dockerfile | 2 +- docs/dev.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 580bf53..cf40020 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: run: docker compose up -d -t 0 traefik clickhouse minio postgres redis - name: Install caracal run: | - sudo curl -L -o /usr/bin/caracal https://github.com/dioptra-io/caracal/releases/download/v0.15.1/caracal-linux-amd64 + sudo curl -L -o /usr/bin/caracal https://github.com/dioptra-io/caracal/releases/download/v0.15.3/caracal-linux-amd64 sudo chmod +x /usr/bin/caracal - name: Install package run: poetry install diff --git a/dockerfiles/iris-agent.dockerfile b/dockerfiles/iris-agent.dockerfile index 33bfc10..01d41fe 100644 --- a/dockerfiles/iris-agent.dockerfile +++ b/dockerfiles/iris-agent.dockerfile @@ -36,7 +36,7 @@ RUN apt-get update \ zstd \ && rm -rf /var/lib/apt/lists/* -RUN curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.2/caracal-linux-amd64 > /usr/bin/caracal \ +RUN curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.3/caracal-linux-amd64 > /usr/bin/caracal \ && chmod +x /usr/bin/caracal WORKDIR /app diff --git a/docs/dev.md b/docs/dev.md index abfb88d..8e5b13d 100644 --- a/docs/dev.md +++ b/docs/dev.md @@ -21,7 +21,7 @@ To be able to access them from your own machine, you need to add the following e You also need caracal in your $PATH if you intend to run Iris locally: ```bash # Use caracal-macos-amd64 for macOS -curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.2/caracal-linux-amd64 > /usr/bin/caracal +curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.3/caracal-linux-amd64 > /usr/bin/caracal chmod +x /usr/bin/caracal ```