From 8d8ba826cf4e5886b1c07030724b0b4abf6641f2 Mon Sep 17 00:00:00 2001 From: Gavin Lee Date: Mon, 31 Jan 2022 09:56:55 +1100 Subject: [PATCH 1/2] julia 1.6.1 -> 1.7.1 --- docker/julia/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/julia/Dockerfile b/docker/julia/Dockerfile index 4656870b..f578b67f 100644 --- a/docker/julia/Dockerfile +++ b/docker/julia/Dockerfile @@ -10,12 +10,12 @@ USER root ENV JULIA_DEPOT_PATH=/opt/julia ENV JULIA_PKGDIR=/opt/julia # If this changes, you also need to change the checksum below -ENV JULIA_VERSION=1.6.1 +ENV JULIA_VERSION=1.7.1 RUN mkdir /opt/julia-${JULIA_VERSION} && \ cd /tmp && \ wget -q https://julialang-s3.julialang.org/bin/linux/x64/`echo ${JULIA_VERSION} | cut -d. -f 1,2`/julia-${JULIA_VERSION}-linux-x86_64.tar.gz && \ - echo "7c888adec3ea42afbfed2ce756ce1164a570d50fa7506c3f2e1e2cbc49d52506 *julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | sha256sum -c - && \ + echo "44658e9c7b45e2b9b5b59239d190cca42de05c175ea86bc346c294a8fe8d9f11 *julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | sha256sum -c - && \ tar xzf julia-${JULIA_VERSION}-linux-x86_64.tar.gz -C /opt/julia-${JULIA_VERSION} --strip-components=1 && \ rm /tmp/julia-${JULIA_VERSION}-linux-x86_64.tar.gz RUN ln -fs /opt/julia-*/bin/julia /usr/local/bin/julia From bef3dd6323f3d9796c2de9d57d8f8f42f5468294 Mon Sep 17 00:00:00 2001 From: Gavin Lee Date: Mon, 31 Jan 2022 10:22:12 +1100 Subject: [PATCH 2/2] Update build_and_push_to_docker.yml --- .github/workflows/build_and_push_to_docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_push_to_docker.yml b/.github/workflows/build_and_push_to_docker.yml index 190a2a91..785c0ef6 100644 --- a/.github/workflows/build_and_push_to_docker.yml +++ b/.github/workflows/build_and_push_to_docker.yml @@ -107,7 +107,7 @@ jobs: fail-fast: true matrix: JULIAVERSIONS: - - 1.6.1 + - 1.7.1 steps: - name: Docker Login