Skip to content

Commit 698f5fd

Browse files
committed
Fixed bin path in pr-validation.yml
1 parent 9fcf9e9 commit 698f5fd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/pr-validation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
# Run every biweekly to discover failures due to environment changes
88
schedule:
99
- cron: '0 0 1,15 * *'
10-
10+
1111
# Allows you to run this workflow manually from the Actions tab
1212
workflow_dispatch:
1313

@@ -24,8 +24,8 @@ jobs:
2424
- name: Upload binaries artifact for InferSharp job
2525
uses: actions/upload-artifact@v4
2626
with:
27-
name: bin-net6
28-
path: src\Serilog.Sinks.MSSqlServer\bin\Release\net6.0
27+
name: bin
28+
path: src\Serilog.Sinks.MSSqlServer\bin\Release\net8.0
2929

3030
- name: Upload testresults artifact with code coverage file
3131
uses: actions/upload-artifact@v4
@@ -44,13 +44,13 @@ jobs:
4444
- name: Download binaries artifact
4545
uses: actions/download-artifact@v4
4646
with:
47-
name: bin-net6
48-
path: bin-net6
47+
name: bin
48+
path: bin
4949

5050
- name: Run Infer#
5151
uses: microsoft/[email protected]
5252
with:
53-
binary-path: bin-net6
53+
binary-path: bin-net
5454

5555
- name: Upload SARIF output to GitHub Security Center
5656
uses: github/codeql-action/upload-sarif@v3

0 commit comments

Comments
 (0)