From b2554827181ae39be1446acd51c1c2d2c6026738 Mon Sep 17 00:00:00 2001 From: "Charlton, Scott R" Date: Wed, 10 Apr 2024 11:35:26 -0600 Subject: [PATCH] Updated to actions/checkout@v4 and added windows-2019 to ctest matrix --- .github/workflows/cmake.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 41e1b698e..178fe8765 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -31,7 +31,7 @@ jobs: # check_files: # runs-on: ubuntu-latest # steps: - # - uses: actions/checkout@v3 + # - uses: actions/checkout@v4 # name: Check out repository # - run: ./check_utf8.sh # name: Run check_utf8.sh @@ -53,7 +53,7 @@ jobs: steps: - name: '🧰 Checkout' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: usgs-coupled/numdiff @@ -120,7 +120,7 @@ jobs: BUILD_TYPE: Release steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Configure # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. @@ -135,13 +135,13 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, ubuntu-latest, windows-latest] + os: [macos-latest, ubuntu-latest, windows-2019, windows-latest] needs: [build, build-numdiff] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install ninja numdiff valgrind (Linux) if: runner.os == 'Linux'