Skip to content

Commit

Permalink
CI: Fix CMake setup
Browse files Browse the repository at this point in the history
It currently fails to find a matching version so update the action
version and use a wildcard match.
  • Loading branch information
Flamefire committed Feb 3, 2023
1 parent e7df727 commit 14f12c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ jobs:
run: choco install wget
- name: Setup cmake
if: "!startsWith(runner.os, 'Windows')"
uses: jwlawson/actions-setup-cmake@v1.8
uses: jwlawson/actions-setup-cmake@v1.13
with:
cmake-version: '3.20'
cmake-version: '3.20.x'

- name: Setup CCache
if: "!startsWith(runner.os, 'Windows')"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ jobs:
run: choco install wget
- name: Setup cmake
if: "!startsWith(runner.os, 'Windows')"
uses: jwlawson/actions-setup-cmake@v1.8
uses: jwlawson/actions-setup-cmake@v1.13
with:
cmake-version: '3.9'
cmake-version: '3.9.x'

- name: Setup CCache
if: "!startsWith(runner.os, 'Windows')"
Expand Down

0 comments on commit 14f12c2

Please sign in to comment.