Skip to content

Commit

Permalink
Consume .NET nightly builds
Browse files Browse the repository at this point in the history
Update to the latest nightly build of .NET 8 preview 7.
  • Loading branch information
martincostello committed Jul 21, 2023
1 parent 9593153 commit eef67bb
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 16 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ on:
push:
branches: [ main ]
paths-ignore:
- '**/*.gitattributes'
- '**/*.gitignore'
- '**/*.md'
- '**/*.gitattributes'
- '**/*.gitignore'
- '**/*.md'
pull_request:
branches: [ main, dotnet-vnext ]
branches:
- main
- dotnet-vnext
- dotnet-nightly
workflow_dispatch:

env:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ on:
push:
branches: [ main ]
pull_request:
branches: [ main, dotnet-vnext ]
branches:
- main
- dotnet-vnext
- dotnet-nightly
schedule:
- cron: '0 6 * * 1'
workflow_dispatch:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ name: dependency-review

on:
pull_request:
branches: [ main, dotnet-vnext ]
branches:
- main
- dotnet-vnext
- dotnet-nightly

permissions:
contents: read
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ name: lighthouse

on:
pull_request:
branches: [ main, dotnet-vnext ]
branches:
- main
- dotnet-vnext
- dotnet-nightly
workflow_dispatch:

permissions:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/update-dotnet-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ permissions:

jobs:
update-sdk:
uses: martincostello/update-dotnet-sdk/.github/workflows/update-dotnet-sdk.yml@ff9a6f247704ef1b77eb3c478070d8fa69c2360e # v2.2.3
uses: martincostello/update-dotnet-sdk/.github/workflows/update-dotnet-sdk.yml@dotnet-nightly
with:
labels: "dependencies,.NET"
channel: '8.0.1xx-preview7'
quality: 'daily'
user-email: ${{ vars.GIT_COMMIT_USER_EMAIL }}
user-name: ${{ vars.GIT_COMMIT_USER_NAME }}
secrets:
Expand Down
14 changes: 7 additions & 7 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
<PackageVersion Include="JustEat.HttpClientInterception" Version="4.0.0" />
<PackageVersion Include="MartinCostello.Logging.XUnit" Version="0.3.0" />
<PackageVersion Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Facebook" Version="8.0.0-preview.6.23329.11" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="8.0.0-preview.6.23329.11" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="8.0.0-preview.6.23329.11" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Twitter" Version="8.0.0-preview.6.23329.11" />
<PackageVersion Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup" Version="8.0.0-preview.6.23329.11" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0-preview.6.23329.11" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Facebook" Version="8.0.0-preview.7.23362.32" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="8.0.0-preview.7.23362.32" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="8.0.0-preview.7.23362.32" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Twitter" Version="8.0.0-preview.7.23362.32" />
<PackageVersion Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup" Version="8.0.0-preview.7.23362.32" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0-preview.7.23362.32" />
<PackageVersion Include="Microsoft.Azure.Cosmos" Version="3.35.2" />
<PackageVersion Include="Microsoft.DotNet.XliffTasks" Version="1.0.0-beta.21452.1" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="8.0.0-preview.6.23329.11" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="8.0.0-preview.7.23362.32" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
<PackageVersion Include="Microsoft.Playwright" Version="1.36.0" />
<PackageVersion Include="Microsoft.TypeScript.MSBuild" Version="5.1.5" />
Expand Down
4 changes: 4 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
<configuration>
<packageSources>
<clear />
<add key="dotnet8" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json" />
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="dotnet8">
<package pattern="*" />
</packageSource>
<packageSource key="dotnet-eng">
<package pattern="Microsoft.DotNet.XliffTasks" />
</packageSource>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100-preview.6.23330.14",
"version": "8.0.100-preview.7.23363.2",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
Expand Down

0 comments on commit eef67bb

Please sign in to comment.