Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump to latest uno.check #321

Merged
merged 7 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 10 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,16 @@ on:
push:
branches:
- main
- release/**
- legacy/**
- release/*/*

pull_request:
types: [opened, synchronize, reopened]
branches:
- main
- release/**
- legacy/**
- release/*/*

env:
UnoCheck_Version: '1.26.0-dev.28'
UnoCheck_Version: '1.27.1'

jobs:
build_tool:
Expand All @@ -27,20 +25,15 @@ jobs:
with:
fetch-depth: 0

- name: Setup .NET 5
uses: actions/setup-dotnet@v4
with:
dotnet-version: '5.0.408'

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.401'
dotnet-version: '9.0.100'

- name: Setup GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '5.6.11'
versionSpec: '5.10.3'

- name: GitVersion
id: gitversion
Expand Down Expand Up @@ -81,7 +74,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-15]
config: [Debug, Release]

runs-on: ${{ matrix.os }}
Expand All @@ -100,7 +93,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.401'
dotnet-version: '9.0.100'

- run: |
ubuntu_release=`lsb_release -rs`
Expand Down Expand Up @@ -179,7 +172,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.401'
dotnet-version: '9.0.100'

- name: Download Artifact
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -228,7 +221,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.401'
dotnet-version: '9.0.100'

- run: |
& dotnet tool update --global uno.check --version ${{ env.UnoCheck_Version }} --add-source https://api.nuget.org/v3/index.json
Expand Down Expand Up @@ -288,7 +281,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '3.1.x'
dotnet-version: '9.0.100'

- name: Setup SignClient
run: |
Expand Down
7 changes: 0 additions & 7 deletions samples/5.2/Uno52ResizetizerTests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,4 @@
-->
<NoWarn>$(NoWarn);NU1507;NETSDK1201;PRI257</NoWarn>
</PropertyGroup>

<PropertyGroup>
<UnoExtensionsVersion>4.1.11</UnoExtensionsVersion>
<UnoToolkitVersion>6.0.16</UnoToolkitVersion>
<UnoThemesVersion>5.0.11</UnoThemesVersion>
<UnoCSharpMarkupVersion>5.2.10</UnoCSharpMarkupVersion>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Uno.Sdk">
<PropertyGroup>
<TargetFrameworks>
net8.0-android;
net8.0-ios;
net8.0-maccatalyst;
net8.0-windows10.0.19041;
net8.0-desktop;
net8.0-browserwasm;
net9.0-android;
net9.0-ios;
net9.0-maccatalyst;
net9.0-windows10.0.19041;
net9.0-desktop;
net9.0-browserwasm;
</TargetFrameworks>

<OutputType>Exe</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion samples/5.2/Uno52ResizetizerTests/global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
// To update the version of Uno please update the version of the Uno.Sdk here. See https://aka.platform.uno/upgrade-uno-packages for more information.
"msbuild-sdks": {
"Uno.Sdk": "5.2.68"
"Uno.Sdk": "5.5.43"
}
}
Loading