diff --git a/.github/workflows/job-cmakebuild-macOS.yml b/.github/workflows/job-cmakebuild-macOS.yml index 65f2c59b..66b9698f 100644 --- a/.github/workflows/job-cmakebuild-macOS.yml +++ b/.github/workflows/job-cmakebuild-macOS.yml @@ -18,10 +18,13 @@ on: jobs: cmake-build: name: cmake-build-macOS-${{ inputs.architecture }}-${{ inputs.configuration }} - runs-on: ${{ inputs.architecture == 'x64' && 'macos-13' || 'macos-14' }} + runs-on: ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }} steps: - name: Checkout repository uses: actions/checkout@v4 + + - name: Install NuGet CLI + run: brew install nuget - name: CMake Build run: .\Scripts\BuildEngine.ps1 -Configurations ${{inputs.configuration}} -Architecture ${{inputs.architecture}} -RunClangFormat 0 diff --git a/.github/workflows/job-deploy-macOS.yml b/.github/workflows/job-deploy-macOS.yml index 649b196c..36164624 100644 --- a/.github/workflows/job-deploy-macOS.yml +++ b/.github/workflows/job-deploy-macOS.yml @@ -18,7 +18,7 @@ on: jobs: deploy: name: deploy-macOS-${{ inputs.architecture }}-${{ inputs.configuration }} - runs-on: ${{ inputs.architecture == 'x64' && 'macos-13' || 'macos-latest' }} + runs-on: ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }} steps: - uses: actions/download-artifact@v4 with: diff --git a/.github/workflows/job-test-macOS.yml b/.github/workflows/job-test-macOS.yml index 401fccfb..ba272c82 100644 --- a/.github/workflows/job-test-macOS.yml +++ b/.github/workflows/job-test-macOS.yml @@ -15,7 +15,7 @@ on: jobs: test: name: test-macOS-${{ inputs.architecture }}-${{ inputs.configuration }} - runs-on: ${{ inputs.architecture == 'x64' && 'macos-13' || 'macos-latest' }} + runs-on: ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }} steps: - name: Checkout repository uses: actions/checkout@v4