Skip to content

Commit

Permalink
gh-actions - bump setup-dotnet and dotnet-version (#30)
Browse files Browse the repository at this point in the history
* gh-actions - bump setup-dotnet and dotnet-version

* bump test.csproj to net8, like we have for dotnetastgen.csproj already?
  • Loading branch information
xavierpinho authored Jan 26, 2025
1 parent 77091f6 commit 216c903
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
with:
fetch-depth: '0'
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.x'
dotnet-version: '8.x'
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
with:
fetch-depth: '0'
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.x'
dotnet-version: '8.x'
- name: Get next release version (dry run)
id: taggerDryRun
uses: anothrNick/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion DotNetAstGen.Test/DotNetAstGen.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand Down

0 comments on commit 216c903

Please sign in to comment.