From a99b23b9245969b12a4fda4cc36466de80cc61b9 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 20 Aug 2022 20:03:41 +0200 Subject: [PATCH] :hammer: use latest official images --- .github/workflows/ubuntu.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 4e4918c3c..50b12754d 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -16,9 +16,11 @@ concurrency: jobs: ci_test_clang: runs-on: ubuntu-latest - container: ghcr.io/nlohmann/json-ci:v2.4.0 + container: silkeh/clang:latest steps: - uses: actions/checkout@v3 + - name: Get latest CMake and ninja + uses: lukka/get-cmake@latest - name: Run CMake run: cmake -S . -B build -DJSON_CI=On - name: Build @@ -26,9 +28,11 @@ jobs: ci_test_gcc: runs-on: ubuntu-latest - container: ghcr.io/nlohmann/json-ci:v2.4.0 + container: gcc:latest steps: - uses: actions/checkout@v3 + - name: Get latest CMake and ninja + uses: lukka/get-cmake@latest - name: Run CMake run: cmake -S . -B build -DJSON_CI=On - name: Build