File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
BitFaster.Caching.UnitTests.Std Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
18
18
security-events : write
19
19
steps :
20
20
- name : Checkout code
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v4
22
22
- name : Run DevSkim scanner
23
23
uses : microsoft/DevSkim-Action@v1
24
24
- name : Upload DevSkim scan results to GitHub Security tab
25
- uses : github/codeql-action/upload-sarif@v2
25
+ uses : github/codeql-action/upload-sarif@v3
26
26
with :
27
27
sarif_file : devskim-results.sarif
Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ jobs:
135
135
name : Coveralls Finished
136
136
needs : build
137
137
runs-on : ubuntu-latest
138
+ if : ${{ success() }} # Only run if all build jobs succeed
138
139
steps :
139
140
- name : Coveralls Finished
140
141
uses : coverallsapp/github-action@master
Original file line number Diff line number Diff line change 31
31
binary-path : BitFaster.Caching/bin
32
32
33
33
- name : Upload SARIF output to GitHub Security Center
34
- uses : github/codeql-action/upload-sarif@v2
34
+ uses : github/codeql-action/upload-sarif@v3
35
35
with :
36
36
sarif_file : infer-out/report.sarif
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net6.0</TargetFrameworks >
4
+ <TargetFrameworks >net6.0;net9.0 </TargetFrameworks >
5
5
<LangVersion >9.0</LangVersion >
6
6
</PropertyGroup >
7
7
You can’t perform that action at this time.
0 commit comments