diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 57f3a72..fab671d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ ubuntu-22.04, windows-2022, macos-12 ] + os: [ ubuntu-24.04, windows-2022, macos-14 ] env: AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }} @@ -65,6 +65,10 @@ jobs: with: path: tools key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }} + - name: try installing libgit + if: runner.os == 'Linux' + run: | + sudo apt-get install -y libgit2-dev libicu - name: Build project uses: cake-build/cake-action@v1 with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a467359..5d39c9a 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -17,7 +17,7 @@ on: jobs: analyze: name: Analyze - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: fail-fast: false diff --git a/recipe.cake b/recipe.cake index 0bd755d..6062890 100644 --- a/recipe.cake +++ b/recipe.cake @@ -17,7 +17,8 @@ BuildParameters.SetParameters( gitterMessage: "@/all " + standardNotificationMessage, twitterMessage: standardNotificationMessage, shouldRunCodecov: false, - preferredBuildProviderType: BuildProviderType.GitHubActions); + preferredBuildProviderType: BuildProviderType.GitHubActions, + shouldUseTargetFrameworkPath: false); BuildParameters.PrintParameters(Context);