From 40490603457b8a459271cbedeaa5a76021056bbe Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 16 Feb 2024 09:38:21 +0100 Subject: [PATCH] bump deno to 1.40.5 --- .github/DockerfileBackendTests | 2 +- Dockerfile | 5 +++-- lsp/Dockerfile | 5 +++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/DockerfileBackendTests b/.github/DockerfileBackendTests index a3d9d592e3..10bba388c8 100644 --- a/.github/DockerfileBackendTests +++ b/.github/DockerfileBackendTests @@ -59,7 +59,7 @@ RUN mkdir -p /nsjail_data/python && HOME=/nsjail_data/python /usr/local/bin/pyth COPY --from=nsjail /nsjail/nsjail /bin/nsjail COPY --from=oven/bun:1.0 /usr/local/bin/bun /usr/bin/bun -COPY --from=denoland/deno:1.40.2 /usr/bin/deno /usr/bin/deno +COPY --from=denoland/deno:1.40.5 /usr/bin/deno /usr/bin/deno RUN apt-get update \ && apt-get install -y postgresql-client --allow-unauthenticated diff --git a/Dockerfile b/Dockerfile index 04cae30228..83148bd4a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -100,8 +100,9 @@ SHELL ["/bin/bash", "-c"] RUN apt update -y RUN apt install -y unzip curl -RUN [ "$TARGETPLATFORM" == "linux/arm64" ] && curl -Lsf https://github.com/LukeChannings/deno-arm64/releases/download/v1.40.2/deno-linux-arm64.zip -o deno.zip || true -RUN [ "$TARGETPLATFORM" == "linux/amd64" ] && curl -Lsf https://github.com/denoland/deno/releases/download/v1.40.2/deno-x86_64-unknown-linux-gnu.zip -o deno.zip || true +RUN [ "$TARGETPLATFORM" == "linux/amd64" ] && curl -Lsf https://github.com/denoland/deno/releases/download/v1.40.5/deno-x86_64-unknown-linux-gnu.zip -o deno.zip || true +RUN [ "$TARGETPLATFORM" == "linux/arm64" ] && curl -Lsf https://github.com/denoland/deno/releases/download/v1.40.5/deno-aarch64-unknown-linux-gnu.zip -o deno.zip || true + RUN unzip deno.zip && rm deno.zip diff --git a/lsp/Dockerfile b/lsp/Dockerfile index f7fbbebd6d..c965caabb5 100644 --- a/lsp/Dockerfile +++ b/lsp/Dockerfile @@ -7,8 +7,9 @@ SHELL ["/bin/bash", "-c"] RUN apt update -y RUN apt install -y unzip curl -RUN [ "$TARGETPLATFORM" == "linux/arm64" ] && curl -Lsf https://github.com/LukeChannings/deno-arm64/releases/download/v1.40.2/deno-linux-arm64.zip -o deno.zip || true -RUN [ "$TARGETPLATFORM" == "linux/amd64" ] && curl -Lsf https://github.com/denoland/deno/releases/download/v1.40.2/deno-x86_64-unknown-linux-gnu.zip -o deno.zip || true +RUN [ "$TARGETPLATFORM" == "linux/amd64" ] && curl -Lsf https://github.com/denoland/deno/releases/download/v1.40.5/deno-x86_64-unknown-linux-gnu.zip -o deno.zip || true +RUN [ "$TARGETPLATFORM" == "linux/arm64" ] && curl -Lsf https://github.com/denoland/deno/releases/download/v1.40.5/deno-aarch64-unknown-linux-gnu.zip -o deno.zip || true + RUN unzip deno.zip && rm deno.zip