File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ jobs:
1111
1212 steps :
1313 - name : Checkout
14- uses : actions/checkout@v2
14+ uses : actions/checkout@v4
1515
1616 - name : Setup .NET
17- uses : actions/setup-dotnet@v3
17+ uses : actions/setup-dotnet@v4
1818 with :
19- dotnet-version : 7 .0.x
19+ dotnet-version : 8 .0.x
2020
2121 - name : Restore dependencies
2222 run : dotnet restore
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
1212
1313 steps :
1414 - name : Checkout
15- uses : actions/checkout@v3
15+ uses : actions/checkout@v4
1616
1717 - name : Setup .NET
18- uses : actions/setup-dotnet@v3
18+ uses : actions/setup-dotnet@v4
1919 with :
20- dotnet-version : 7 .0.x
20+ dotnet-version : 8 .0.x
2121
2222 - name : Restore dependencies
2323 run : dotnet restore
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
1212
1313 steps :
1414 - name : Checkout
15- uses : actions/checkout@v3
15+ uses : actions/checkout@v4
1616
1717 - name : Setup .NET
18- uses : actions/setup-dotnet@v3
18+ uses : actions/setup-dotnet@v4
1919 with :
20- dotnet-version : 7 .0.x
20+ dotnet-version : 8 .0.x
2121
2222 - name : Restore dependencies
2323 run : dotnet restore
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/runtime:7 .0 AS base
1+ FROM mcr.microsoft.com/dotnet/runtime:8 .0 AS base
22WORKDIR /app
33
4- FROM mcr.microsoft.com/dotnet/sdk:7 .0 AS build
4+ FROM mcr.microsoft.com/dotnet/sdk:8 .0 AS build
55WORKDIR /src
66COPY ["SuggestionBot/SuggestionBot.csproj" , "SuggestionBot/" ]
77RUN dotnet restore "SuggestionBot/SuggestionBot.csproj"
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >net7 .0</TargetFramework >
5+ <TargetFramework >net8 .0</TargetFramework >
66 <ImplicitUsings >enable</ImplicitUsings >
77 <Nullable >enable</Nullable >
88 <DockerDefaultTargetOS >Linux</DockerDefaultTargetOS >
Original file line number Diff line number Diff line change 11{
22 "sdk" : {
3- "version" : " 7 .0.0" ,
3+ "version" : " 8 .0.0" ,
44 "rollForward" : " latestMajor" ,
55 "allowPrerelease" : true
66 }
You can’t perform that action at this time.
0 commit comments