Use non-pinned major versions of actions

This commit is contained in:
Leroy Hopson 2022-08-27 20:46:41 +12:00
parent 9435502c8d
commit 6fce61364d
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA

View file

@ -36,7 +36,7 @@ jobs:
run: docker-compose pull
working-directory: addons/godot_xterm/native
- name: Cache docker image layers
uses: satackey/action-docker-layer-caching@v0.0.11
uses: satackey/action-docker-layer-caching@v0
continue-on-error: true
- name: Build godot-cpp bindings
if: steps.cache-submodules.outputs.cache-hit != 'true'
@ -114,7 +114,7 @@ jobs:
if: ${{ matrix.os == 'windows-latest' }}
run: python -m pip install scons
- name: Setup MSVC command prompt
uses: ilammy/msvc-dev-cmd@v1.9.0
uses: ilammy/msvc-dev-cmd@v1
if: ${{ matrix.os == 'windows-latest' }}
with:
arch: win${{ matrix.bits }}
@ -125,7 +125,7 @@ jobs:
scons platform=${{ matrix.platform }} target=${{ matrix.target }} bits=${{ matrix.bits }} generate_bindings=yes -j2
- name: Setup cmake
if: steps.cache-submodules.outputs.cache-hit != 'true'
uses: jwlawson/actions-setup-cmake@v1.9
uses: jwlawson/actions-setup-cmake@v1
with:
cmake-version: '3.23.2'
use-32bit: ${{ matrix.bits == 32 && matrix.os == 'windows-latest' }}