Skip to content

Commit 8e67807

Browse files
committed
Upgrading to .NET 9
1 parent a90f44b commit 8e67807

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/dotnet-core-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Extract branch name
5858
id: extract_branch
5959
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
60-
- uses: actions/download-artifact@v3
60+
- uses: actions/download-artifact@v4
6161
with:
6262
name: greate-belt-container
6363
- run: docker load -i greate-belt-container.tar
@@ -146,7 +146,7 @@ jobs:
146146
cat docker_run_log
147147
- name: Archive screenshot artifacts
148148
if: ${{ failure() }}
149-
uses: actions/upload-artifact@v3
149+
uses: actions/upload-artifact@v4
150150
with:
151151
name: error Screenshots
152152
path: |

.github/workflows/dotnet-core-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions/checkout@v3
5252
with:
5353
path: eform-angular-greate-belt-plugin
54-
- uses: actions/download-artifact@v3
54+
- uses: actions/download-artifact@v4
5555
with:
5656
name: greate-belt-container
5757
- run: docker load -i greate-belt-container.tar
@@ -140,7 +140,7 @@ jobs:
140140
cat docker_run_log
141141
- name: Archive screenshot artifacts
142142
if: ${{ failure() }}
143-
uses: actions/upload-artifact@v3
143+
uses: actions/upload-artifact@v4
144144
with:
145145
name: error Screenshots
146146
path: |

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ COPY eform-angular-frontend/eform-client ./
55
RUN yarn install
66
RUN npm run build
77

8-
FROM mcr.microsoft.com/dotnet/sdk:8.0-jammy AS build-env
8+
FROM mcr.microsoft.com/dotnet/sdk:9.0-noble AS build-env
99
WORKDIR /app
1010
ARG GITVERSION
1111
ARG PLUGINVERSION
@@ -20,7 +20,7 @@ RUN dotnet publish ItemsPlanning.Pn -o ItemsPlanning.Pn/out /p:Version=$PLUGINVE
2020
RUN dotnet publish GreateBelt.Pn -o GreateBelt.Pn/out /p:Version=$PLUGIN4VERSION --runtime linux-x64 --configuration Release
2121

2222
# Build runtime image
23-
FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy
23+
FROM mcr.microsoft.com/dotnet/aspnet:9.0-noble
2424
WORKDIR /app
2525
COPY --from=build-env /app/eFormAPI.Web/out .
2626
RUN mkdir -p ./Plugins/ItemsPlanning.Pn

0 commit comments

Comments
 (0)