Skip to content

Commit 84b3bcc

Browse files
committed
Revert "Revert "Upgrade to .NET 9""
This reverts commit a225c18.
1 parent bdde3c8 commit 84b3bcc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/test-migration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
--health-retries 5
3030
steps:
3131
- uses: actions/checkout@v4
32-
- name: Setup .NET Core SDK 7.0
32+
- name: Setup .NET SDK
3333
uses: actions/setup-dotnet@v4
3434
with:
3535
global-json-file: global.json

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Setup .NET Core SDK 7.0
18+
- name: Setup .NET SDK
1919
uses: actions/setup-dotnet@v4
2020
with:
2121
global-json-file: global.json

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# see: https://hub.docker.com/_/microsoft-dotnet-sdk/
2-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
2+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build-env
33

44
WORKDIR /App
55

@@ -30,7 +30,7 @@ RUN dotnet publish -c Release -o out
3030

3131
# Build runtime image
3232
# see: https://hub.docker.com/_/microsoft-dotnet-aspnet/
33-
FROM mcr.microsoft.com/dotnet/aspnet:8.0
33+
FROM mcr.microsoft.com/dotnet/aspnet:9.0
3434

3535
WORKDIR /App/Lullaby
3636
COPY --from=build-env /App/Lullaby/out .

global.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
3-
"version": "8.0.403",
3+
"version": "9.0.100",
44
"rollForward": "feature",
55
"allowPrerelease": true
66
}
7-
}
7+
}

0 commit comments

Comments
 (0)