From a187e9c1d246be2c2c1615c465f1ae4ac63239ac Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Tue, 26 Nov 2024 16:00:04 +0000 Subject: [PATCH 1/4] Update actions version --- .github/workflows/infersharp.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/infersharp.yml b/.github/workflows/infersharp.yml index f701197..bebc8ad 100644 --- a/.github/workflows/infersharp.yml +++ b/.github/workflows/infersharp.yml @@ -11,12 +11,12 @@ 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 From ad840f153dfbfcb977b327d11bba1adbba3e220d Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Tue, 26 Nov 2024 17:54:15 +0000 Subject: [PATCH 2/4] Update infersharp.yml --- .github/workflows/infersharp.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/infersharp.yml b/.github/workflows/infersharp.yml index bebc8ad..c4775af 100644 --- a/.github/workflows/infersharp.yml +++ b/.github/workflows/infersharp.yml @@ -13,8 +13,6 @@ jobs: - name: Run Infer# 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@v2 From 87e9b020f647537201b6001ed92f1ddda3710478 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 15 May 2025 17:32:33 +0100 Subject: [PATCH 3/4] Update main.yml --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }} From 164c79c1be789dae2b8da8d68896e6e2a4258372 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 15 May 2025 17:32:52 +0100 Subject: [PATCH 4/4] Update release.yml --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }}