File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1111 timeout-minutes : 15
1212 steps :
1313 - name : Checkout
14- uses : actions/checkout@v2
14+ uses : actions/checkout@v3
15+ - name : Set up .NET 7
16+ uses : actions/setup-dotnet@v3
17+ with :
18+ dotnet-version : ' 7'
1519 - name : Build
1620 run : docker build --target build .
1721 - name : Test
Original file line number Diff line number Diff line change 77 timeout-minutes : 15
88 steps :
99 - name : Checkout
10- uses : actions/checkout@v2
10+ uses : actions/checkout@v3
11+ - name : Set up .NET 7
12+ uses : actions/setup-dotnet@v3
13+ with :
14+ dotnet-version : ' 7'
1115 - name : Set VERSION variable from tag
1216 run : echo "VERSION=${GITHUB_REF/refs\/tags\/}" >> $GITHUB_ENV
1317 - name : Build
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/sdk:6 .0 AS build
1+ FROM mcr.microsoft.com/dotnet/sdk:7 .0 AS build
22WORKDIR /source
33
44# copy csproj and restore as distinct layers
You can’t perform that action at this time.
0 commit comments