Skip to content

Commit 1198a52

Browse files
author
samatrhea
committed
[Update] GitHub actions to dotnet-version: 7.0.x
1 parent 1d565e3 commit 1198a52

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/CodeQuality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup dotnet
1717
uses: actions/setup-dotnet@v2
1818
with:
19-
dotnet-version: '6.0.x'
19+
dotnet-version: '7.0.x'
2020

2121
- name: Restore dependencies
2222
run: dotnet restore SysML2.NET.sln

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,27 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
with:
1818
# We must fetch at least the immediate parents so that if this is
1919
# a pull request then we can checkout the head.
2020
fetch-depth: 2
2121

2222
# Initializes the CodeQL tools for scanning.
2323
- name: Initialize CodeQL
24-
uses: github/codeql-action/init@v1
24+
uses: github/codeql-action/init@v2
2525
# Override language selection by uncommenting this and choosing your languages
2626
with:
2727
languages: csharp
2828

2929
- name: Setup .NET Core
30-
uses: actions/setup-dotnet@v1
30+
uses: actions/setup-dotnet@v2
3131
with:
32-
dotnet-version: 6.0.x
32+
dotnet-version: 7.0.x
3333
- name: Install dependencies
3434
run: dotnet restore
3535
- name: Build
3636
run: dotnet build --configuration Release --no-restore
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@v1
39+
uses: github/codeql-action/analyze@v2

0 commit comments

Comments
 (0)