From 615eb42aedd14add0a2cfe546f5982a4dee46390 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 20 Aug 2022 17:47:13 +0200 Subject: [PATCH] :wrench: less use of ghcr.io/nlohmann/json-ci --- .github/workflows/ubuntu.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index ca42d8c3b..4570c392e 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -49,9 +49,10 @@ jobs: ci_test_single_header: runs-on: ubuntu-latest - container: ghcr.io/nlohmann/json-ci:v2.4.0 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 @@ -59,12 +60,13 @@ jobs: ci_cmake_options: runs-on: ubuntu-latest - container: ghcr.io/nlohmann/json-ci:v2.4.0 strategy: matrix: target: [ci_test_diagnostics, ci_test_noexceptions, ci_test_noimplicitconversions, ci_test_legacycomparison, ci_test_noglobaludls] 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