We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cf9d04 commit ea5ea72Copy full SHA for ea5ea72
1 file changed
.github/actions/build/action.yml
@@ -42,9 +42,12 @@ runs:
42
43
# CMakeのセットアップ
44
- name: Setup CMake
45
- uses: lukka/get-cmake@latest
+ uses: jwlawson/actions-setup-cmake@v1
46
with:
47
- cmakeVersion: '3.25.2' # ← 使用したいバージョンを指定
+ version: '3.25.2'
48
+
49
+ - name: Check CMake version
50
+ run: cmake --version
51
shell: ${{ inputs.shell_type }}
52
53
# Unreal Engineと合わせたバージョンでMSVCを用意する準備として、始めからある望みでないバージョンを消します。
0 commit comments