From 0c378c048c378dabb9a34598469160daf13527ff Mon Sep 17 00:00:00 2001 From: program-- Date: Wed, 24 Jan 2024 16:43:52 -0800 Subject: [PATCH] docker: bump boost version; gh: bump checkout to v4 --- .github/workflows/Example_model_run.yml | 2 +- docker/ngen.dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Example_model_run.yml b/.github/workflows/Example_model_run.yml index c448bb3e78..b67e5cf1a1 100644 --- a/.github/workflows/Example_model_run.yml +++ b/.github/workflows/Example_model_run.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build the NGEN image run: docker build --file ./docker/ngen.dockerfile --tag localbuild/ngen:latest . diff --git a/docker/ngen.dockerfile b/docker/ngen.dockerfile index 50e28c0984..88d880b98f 100644 --- a/docker/ngen.dockerfile +++ b/docker/ngen.dockerfile @@ -7,7 +7,7 @@ RUN dnf update -y \ && dnf install -y --allowerasing tar git gcc-c++ gcc make cmake udunits2-devel coreutils \ && dnf clean all -ARG BOOST_VERSION="1.72.0" +ARG BOOST_VERSION="1.79.0" RUN export BOOST_ARCHIVE="boost_$(echo ${BOOST_VERSION} | tr '\.' '_').tar.gz" \ && export BOOST_URL="https://sourceforge.net/projects/boost/files/boost/${BOOST_VERSION}/${BOOST_ARCHIVE}/download" \ && cd / \