Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/infersharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Run Infer#
uses: microsoft/infersharpaction@v1.2.1
uses: microsoft/infersharpaction@v1.5
id: runinfersharp
with:
binary-path: 'src/'

- name: Upload SARIF output to GitHub Security Center
uses: github/codeql-action/upload-sarif@v1
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: infer-out/report.sarif
sarif_file: infer-out/report.sarif
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:

- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Check format
run: dotnet format --severity error --verify-no-changes -v q
Expand All @@ -29,7 +29,7 @@ jobs:

# Checkout the repo
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4

# Setup .NET
- name: Setup .NET ${{ env.DOTNET_VERSION }}
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:

# Upload nupkg to build artifacts
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ env.PACKAGE_ID }}
path: ${{ env.NUPKG_PATH }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:

- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4

# Install tag to version
- name: Install tag to version tool
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

# Upload nupkg to build artifacts
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ env.PACKAGE_ID }}
path: ${{ env.NUPKG_PATH }}
Expand Down
Loading