diff --git a/.github/workflows/netcetera-publish.yml b/.github/workflows/netcetera-publish.yml index 30ebcf85..abd9c67f 100644 --- a/.github/workflows/netcetera-publish.yml +++ b/.github/workflows/netcetera-publish.yml @@ -19,10 +19,10 @@ jobs: distribution: 'temurin' cache: gradle - - name: Setup CMake - uses: jwlawson/actions-setup-cmake@v2 - with: - cmake-version: '4.0.3' + - name: Install CMake + run: | + sudo apt-get update && sudo apt-get install -y cmake + cmake --version - name: Build run: ./gradlew :netcetera-3ds-core:assembleProductionRelease diff --git a/.github/workflows/netcetera-update.yml b/.github/workflows/netcetera-update.yml index 76bc72fd..fc1eda84 100644 --- a/.github/workflows/netcetera-update.yml +++ b/.github/workflows/netcetera-update.yml @@ -28,10 +28,10 @@ jobs: distribution: 'temurin' cache: gradle - - name: Setup CMake - uses: jwlawson/actions-setup-cmake@v2 - with: - cmake-version: '4.0.3' + - name: Install CMake + run: | + sudo apt-get update && sudo apt-get install -y cmake + cmake --version - name: Download & Bundle run: |