Skip to content

Commit

Permalink
Get SDK version from global.json, dependabot update it
Browse files Browse the repository at this point in the history
  • Loading branch information
James A Sutherland committed Jan 7, 2025
1 parent 6845154 commit a13c05b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ updates:
interval: weekly
reviewers:
- SMI/reviewers
- package-ecosystem: "dotnet-sdk"
directory: "/"
schedule:
interval: weekly
2 changes: 2 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install .NET 8 SDK
uses: actions/setup-dotnet@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# Install the .NET Core workload
- name: Install .NET 8 SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Build and test the application
shell: cmd
Expand Down
5 changes: 5 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project>
<PropertyGroup>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
</Project>
6 changes: 6 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sdk": {
"version": "8.0.111",
"rollForward": "minor"
}
}

0 comments on commit a13c05b

Please sign in to comment.