File tree 4 files changed +20
-7
lines changed
4 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
38
38
39
39
steps :
40
40
- name : Checkout repository
41
- uses : actions/checkout@v3
41
+ uses : actions/checkout@v4
42
42
43
43
# Initializes the CodeQL tools for scanning.
44
44
- name : Initialize CodeQL
45
- uses : github/codeql-action/init@v2
45
+ uses : github/codeql-action/init@v3
46
46
with :
47
47
languages : ${{ matrix.language }}
48
48
# If you wish to specify custom queries, you can do so here or in a config file.
52
52
53
53
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
54
# If this step fails, then you should remove it and run the build manually (see below)
55
- - name : Autobuild
56
- uses : github/codeql-action/autobuild@v2
55
+ # - name: Autobuild
56
+ # uses: github/codeql-action/autobuild@v3
57
57
58
58
# ℹ️ Command-line programs to run using the OS shell.
59
59
# 📚 https://git.io/JvXDl
65
65
# - run: |
66
66
# make bootstrap
67
67
# make release
68
+ - name : Setup .NET SDK
69
+ uses : actions/setup-dotnet@v4
70
+ with :
71
+ dotnet-version : ' 9.0.x'
72
+
73
+ - name : Restore dependencies
74
+ run : dotnet restore
75
+
76
+ - name : Build
77
+ run : dotnet build --configuration Debug --no-restore
68
78
69
79
- name : Perform CodeQL Analysis
70
- uses : github/codeql-action/analyze@v2
80
+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 24
24
3.1.x
25
25
6.0.x
26
26
8.0.x
27
+ 9.0.x
27
28
- name : Install dependencies
28
29
run : dotnet restore
29
30
- name : Build
98
99
dotnet-version : |
99
100
6.0.x
100
101
8.0.x
102
+ 9.0.x
101
103
- name : Install dependencies
102
104
run : dotnet restore
103
105
- name : Build
@@ -139,6 +141,7 @@ jobs:
139
141
dotnet-version : |
140
142
6.0.x
141
143
8.0.x
144
+ 9.0.x
142
145
- name : Install dependencies
143
146
run : dotnet restore
144
147
- name : Build
Original file line number Diff line number Diff line change 18
18
- name : Setup .NET Core
19
19
uses : actions/setup-dotnet@v2
20
20
with :
21
- dotnet-version : 8 .0.x
21
+ dotnet-version : 9 .0.x
22
22
- name : Install dependencies
23
23
run : dotnet restore
24
24
- name : Build
Original file line number Diff line number Diff line change 2
2
using System . Runtime . Intrinsics . X86 ;
3
3
#endif
4
4
5
- #if NET6_0
5
+ #if NET6_0_OR_GREATER
6
6
using System . Runtime . Intrinsics . Arm ;
7
7
#endif
8
8
You can’t perform that action at this time.
0 commit comments