Skip to content

Commit

Permalink
Bump Cake.Frosting to 5.0.0 for github actions update (MonoGame#8561)
Browse files Browse the repository at this point in the history
Context cake-build/cake#4331
Support github actions upload/download v4

Pin the MacOS Workloads to 8.0.402.0 so that we can avoid build issues
until the CI images have been upgraded.
  • Loading branch information
dellis1972 authored Nov 13, 2024
1 parent f0bffd4 commit 33a0fec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ jobs:
- name: Install required workloads
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
dotnet workload install android
dotnet workload install android --version 8.0.402.0
elif [ "$RUNNER_OS" == "Windows" ]; then
dotnet.exe workload install android ios macos
else
dotnet workload install android macos ios
dotnet workload install android macos ios --version 8.0.402.0
fi
shell: bash

Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
#if: runner.environment == 'github-hosted'
if: runner.environment == 'github-hosted'

- name: install wine64 on linux
run: |
Expand All @@ -214,19 +214,19 @@ jobs:
if: runner.os != 'Windows' && runner.environment == 'github-hosted'

- name: Download tests-tools-${{ matrix.platform }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tests-tools-${{ matrix.platform }}
path: tests-tools

- name: Download tests-desktopgl-${{ matrix.platform }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tests-desktopgl-${{ matrix.platform }}
path: tests-desktopgl

- name: Download tests-windowsdx-${{ matrix.platform }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tests-windowsdx-${{ matrix.platform }}
path: tests-windowsdx
Expand Down Expand Up @@ -450,4 +450,4 @@ jobs:
env:
CI: true
working-directory: tests-desktopgl
if: runner.environment != 'github-hosted'
if: runner.environment != 'github-hosted'
6 changes: 3 additions & 3 deletions build/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@

<ItemGroup>
<PackageReference Include="Cake.FileHelpers" Version="7.0.0" />
<PackageReference Include="Cake.Frosting" Version="4.0.0" />
<PackageReference Include="Cake.Frosting" Version="5.0.0" />
<PackageReference Include="Cake.Git" Version="4.0.0" />
<PackageReference Include="NuGet.Packaging" Version="6.10.1" />
<PackageReference Include="System.Formats.Asn1" Version="8.0.1" />
<PackageReference Include="NuGet.Packaging" Version="6.11.1" />
<PackageReference Include="System.Formats.Asn1" Version="9.0.0" />
</ItemGroup>

</Project>

0 comments on commit 33a0fec

Please sign in to comment.