Skip to content

Commit 21cfa8f

Browse files
authored
Update dotnet.yml
1 parent 5530f9b commit 21cfa8f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/dotnet.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@ env:
1010
IMAGE_NAME: odataexample
1111
jobs:
1212
build:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Setup .NET Core
1717
uses: actions/setup-dotnet@v4
1818
with:
1919
dotnet-version: "8.0.x"
20-
dotnet-quality: 'preview'
2120
- name: Install dependencies
2221
run: dotnet restore
2322
- name: Build
@@ -27,7 +26,7 @@ jobs:
2726
- name: Report Codecov
2827
uses: codecov/codecov-action@v5
2928
codeql:
30-
runs-on: ubuntu-22.04
29+
runs-on: ubuntu-24.04
3130
steps:
3231
- uses: actions/checkout@v4
3332
- name: Initialize CodeQL
@@ -38,7 +37,6 @@ jobs:
3837
uses: actions/setup-dotnet@v4
3938
with:
4039
dotnet-version: "8.0.x"
41-
dotnet-quality: 'preview'
4240
- name: Autobuild
4341
uses: github/codeql-action/autobuild@v3
4442
- name: Perform CodeQL Analysis
@@ -52,7 +50,7 @@ jobs:
5250
- name: Build Image
5351
run: docker build . -t $IMAGE_NAME
5452
build-push-docker:
55-
runs-on: ubuntu-22.04
53+
runs-on: ubuntu-24.04
5654
if: github.event_name == 'push'
5755
needs: build
5856
steps:

0 commit comments

Comments
 (0)