From d0d2d01af75d249c0eac62470c081c166d4bb488 Mon Sep 17 00:00:00 2001 From: Robin Linden Date: Thu, 21 Apr 2022 17:38:15 +0200 Subject: [PATCH] Update versions of things used in CI --- .github/workflows/linux-ci.yaml | 6 +++--- .github/workflows/windows-ci.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux-ci.yaml b/.github/workflows/linux-ci.yaml index 70608f0..f7823ec 100644 --- a/.github/workflows/linux-ci.yaml +++ b/.github/workflows/linux-ci.yaml @@ -35,16 +35,16 @@ jobs: cmake-args: "-DSODIUM_MINIMAL=ON" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 with: python-version: "3.10" - name: Install - run: pip install cmake==3.21.4 ninja==1.10.2.2 --upgrade + run: pip install cmake==3.22.4 ninja==1.10.2.3 --upgrade - name: Setup run: echo "CC=${{ matrix.compiler }}" >> $GITHUB_ENV diff --git a/.github/workflows/windows-ci.yaml b/.github/workflows/windows-ci.yaml index 9358fe7..5c7fb68 100644 --- a/.github/workflows/windows-ci.yaml +++ b/.github/workflows/windows-ci.yaml @@ -28,16 +28,16 @@ jobs: cmake-args: -A x64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 with: python-version: "3.10" - name: Install - run: pip install cmake==3.21.4 ninja==1.10.2.2 --upgrade + run: pip install cmake==3.22.4 ninja==1.10.2.3 --upgrade - name: CMake run: cmake -S . -B build -G "${{ matrix.generator }}" ${{ matrix.cmake-args }}