Update versions of things used in CI

This commit is contained in:
Robin Linden
2022-04-21 17:38:15 +02:00
parent a606dc79ed
commit d0d2d01af7
2 changed files with 6 additions and 6 deletions

View File

@@ -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

View File

@@ -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 }}