diff --git a/.github/workflows/infersharp.yml b/.github/workflows/infersharp.yml index f701197..c4775af 100644 --- a/.github/workflows/infersharp.yml +++ b/.github/workflows/infersharp.yml @@ -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 \ No newline at end of file + sarif_file: infer-out/report.sarif diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7e42ba2..42d4b6a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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 }} @@ -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 }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 223bfa8..fc325ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 }}