Skip to content

Commit 0cf0306

Browse files
author
Warren Buckley
committed
Update github action workflows to use .NET7 SDK
1 parent 251107b commit 0cf0306

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
run: 'dir env:'
2424

2525
- name: Setup .NET Core
26-
uses: actions/setup-dotnet@v1
26+
uses: actions/setup-dotnet@v3
2727
with:
28-
dotnet-version: '6.0.x'
28+
dotnet-version: '7.0.x'
2929

3030
- name: Run .NET test
3131
run: dotnet test

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
if: ${{ github.event_name == 'pull_request' }}
2929

3030
- name: Setup .NET Core
31-
uses: actions/setup-dotnet@v1
31+
uses: actions/setup-dotnet@v3
3232
with:
33-
dotnet-version: '6.0.x'
33+
dotnet-version: '7.0.x'
3434

3535
# Initializes the CodeQL tools for scanning.
3636
- name: Initialize CodeQL

.github/workflows/intellicode.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
fetch-depth: 0 # We need to fetch the entire Git history in order to verify the authenticity.
1616

1717
- name: Setup .NET Core
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v3
1919
with:
20-
dotnet-version: '6.0.x'
20+
dotnet-version: '7.0.x'
2121
- name: Build with dotnet
2222
working-directory: LogViewer.Server
2323
run: dotnet build # Project needs to build before training a model.

.github/workflows/richcodenav.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818

1919
# **** Please change 'dotnet-version' to be the version of the .NET SDK used in your project **** #
2020
- name: Setup .NET Core
21-
uses: actions/setup-dotnet@v1
21+
uses: actions/setup-dotnet@v3
2222
with:
23-
dotnet-version: '6.0.x'
23+
dotnet-version: '7.0.x'
2424

2525
# **** Please change 'working-directory' to be the location where your .SLN file is located **** #
2626
- name: Install dependencies

0 commit comments

Comments
 (0)