Bump actions/setup-dotnet from 2 to 4 (#11)

* Bump actions/setup-dotnet from 2 to 4

Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 2 to 4.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v2...v4)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* hopefully fix failing test

* Update main.yml

* Update GlennLibTests.csproj

* Update main.yml

* Update GlennGUI.Mac.csproj

* Update Info.plist

* Update GlennGUI.Mac.csproj

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Miepee <38186597+Miepee@users.noreply.github.com>
pull/13/head
dependabot[bot] 2 years ago committed by GitHub
parent bb22feb452
commit 0c5d93b59d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,9 +31,9 @@ jobs:
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 8.x.x
- name: Restore dependencies
working-directory: ./GlennCLI
run: dotnet restore
@ -80,9 +80,9 @@ jobs:
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 8.x.x
- name: Install Mac workload
run: dotnet workload install macos
- name: Restore dependencies
@ -111,11 +111,11 @@ jobs:
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 8.x.x
- name: Install Mac workload
run: dotnet workload install macos
run: dotnet workload install macos && dotnet workload restore
- name: Restore dependencies
working-directory: ./GlennLibTests/
run: dotnet restore

@ -2,10 +2,10 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0-macos</TargetFramework>
<TargetFramework>net8.0-macos</TargetFramework>
<RollForward>LatestMajor</RollForward>
<RuntimeIdentifiers>osx-x64;osx-arm64</RuntimeIdentifiers>
<SupportedOSPlatformVersion>10.14</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion>10.15</SupportedOSPlatformVersion>
<RuntimeIdentifiers>osx-x64;osx-arm64</RuntimeIdentifiers>
</PropertyGroup>
@ -18,4 +18,4 @@
<PackageReference Include="Eto.Platform.macOS" Version="2.8.2" />
</ItemGroup>
</Project>
</Project>

@ -9,7 +9,7 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>LSMinimumSystemVersion</key>
<string>10.14</string>
<string>10.15</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>NSHumanReadableCopyright</key>
@ -17,4 +17,4 @@
<key>CFBundleIconFile</key>
<string>Icon.icns</string>
</dict>
</plist>
</plist>

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RollForward>LatestMajor</RollForward>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Loading…
Cancel
Save