Skip to content

Commit 20501dc

Browse files
committed
deps: (deps): bump actions/download-artifact from 5 to 6 (#376)
2 parents e228a94 + 81bc700 commit 20501dc

File tree

5 files changed

+28
-8
lines changed

5 files changed

+28
-8
lines changed

.github/workflows/nuget-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
fetch-depth: 0
3535

36-
- uses: actions/download-artifact@v5
36+
- uses: actions/download-artifact@v6
3737
with:
3838
path: './src'
3939
name: build

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ jobs:
288288
with:
289289
fetch-depth: 0
290290

291-
- uses: actions/download-artifact@v5
291+
- uses: actions/download-artifact@v6
292292
with:
293293
path: './src'
294294
name: build

.github/workflows/rl-secure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup NuGet
5555
uses: nuget/setup-nuget@v2
5656

57-
- uses: actions/download-artifact@v5
57+
- uses: actions/download-artifact@v6
5858
with:
5959
path: './src'
6060
name: build

src/Auth0.OidcClient.MAUI/Auth0.OidcClient.MAUI.csproj

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,25 @@
77
<SingleProject>true</SingleProject>
88
<ImplicitUsings>enable</ImplicitUsings>
99

10-
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-ios'">16.4.7142</SupportedOSPlatformVersion>
11-
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-maccatalyst'">16.4.7142</SupportedOSPlatformVersion>
12-
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-android'">33.0.95</SupportedOSPlatformVersion>
10+
<!-- net8.0 -->
11+
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-ios'">17.2</SupportedOSPlatformVersion>
12+
<TargetPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-ios'">17.2</TargetPlatformVersion>
1313

14+
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-maccatalyst'">17.2</SupportedOSPlatformVersion>
15+
<TargetPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-maccatalyst'">17.2</TargetPlatformVersion>
16+
17+
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-android'">34</SupportedOSPlatformVersion>
18+
<TargetPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-android'">34</TargetPlatformVersion>
19+
20+
<!-- net9.0 -->
1421
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-ios'">18.0</SupportedOSPlatformVersion>
22+
<TargetPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-ios'">18.0</TargetPlatformVersion>
23+
1524
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-maccatalyst'">18.0</SupportedOSPlatformVersion>
16-
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-android'">34</SupportedOSPlatformVersion>
25+
<TargetPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-maccatalyst'">18.0</TargetPlatformVersion>
26+
27+
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-android'">35</SupportedOSPlatformVersion>
28+
<TargetPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-android'">35</TargetPlatformVersion>
1729

1830
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.19041.0</SupportedOSPlatformVersion>
1931
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>

src/Auth0.OidcClient.iOS/Auth0.OidcClient.iOS.csproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,15 @@
1111
<NeutralLanguage>en</NeutralLanguage>
1212
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
1313
<DefineConstants>$(DefineConstants);</DefineConstants>
14-
<LangVersion>default</LangVersion>
14+
<LangVersion>default</LangVersion>
15+
16+
<!-- net8.0 -->
17+
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-ios'">17.2</SupportedOSPlatformVersion>
18+
<TargetPlatformVersion Condition="'$(TargetFramework)' == 'net8.0-ios'">17.2</TargetPlatformVersion>
19+
20+
<!-- net9.0 -->
21+
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-ios'">18.0</SupportedOSPlatformVersion>
22+
<TargetPlatformVersion Condition="'$(TargetFramework)' == 'net9.0-ios'">18.0</TargetPlatformVersion>
1523
</PropertyGroup>
1624
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
1725
<DebugType>portable</DebugType>

0 commit comments

Comments
 (0)