From aebded41d1758722098e0428103b7d176b572d3c Mon Sep 17 00:00:00 2001 From: Javier Viola Date: Thu, 10 Oct 2024 12:37:58 +0200 Subject: [PATCH] bump versions and dedupe --- .github/workflows/integration-tests.yml | 2 ++ scripts/ci/docker/zombienet_injected.Dockerfile | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 282a33cd4..8774f3e20 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -30,6 +30,7 @@ jobs: run: | cd javascript npm install + npm dedupe npm run clean npm run build @@ -56,6 +57,7 @@ jobs: run: | cd javascript npm install + npm dedupe npm run clean npm run build diff --git a/scripts/ci/docker/zombienet_injected.Dockerfile b/scripts/ci/docker/zombienet_injected.Dockerfile index 2a318f918..616e1a87c 100644 --- a/scripts/ci/docker/zombienet_injected.Dockerfile +++ b/scripts/ci/docker/zombienet_injected.Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/node:18-bullseye-slim +FROM docker.io/library/node:20-bullseye-slim LABEL io.parity.image.authors="devops-team@parity.io" \ io.parity.image.vendor="Parity Technologies" \ @@ -62,11 +62,11 @@ RUN chown -R nonroot. /etc/zombie-net USER nonroot # install rust -ENV RUST_VERSION=1.75.0 +ENV RUST_VERSION=1.80.0 RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain $RUST_VERSION -y ENV PATH $PATH:/home/nonroot/.cargo/bin # install nextest -RUN cargo install cargo-nextest --locked +RUN cargo install cargo-nextest --locked # Tini allows us to avoid several Docker edge cases, see https://github.com/krallin/tini. ENTRYPOINT ["tini", "--", "bash"]