From 286a28242cf38ece76b98338c1bb0d5eb6618ba4 Mon Sep 17 00:00:00 2001 From: Alex Peck Date: Mon, 30 Jun 2025 12:15:31 -0700 Subject: [PATCH 1/4] update --- .github/workflows/devskim.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/devskim.yml b/.github/workflows/devskim.yml index 5a651028..30f75c77 100644 --- a/.github/workflows/devskim.yml +++ b/.github/workflows/devskim.yml @@ -18,10 +18,10 @@ jobs: security-events: write steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Run DevSkim scanner uses: microsoft/DevSkim-Action@v1 - name: Upload DevSkim scan results to GitHub Security tab - uses: github/codeql-action/upload-sarif@v2 + uses: github/codeql-action/upload-sarif@v3 with: sarif_file: devskim-results.sarif \ No newline at end of file From 1764ab80c11fce45796edcd8d1d704843a632c37 Mon Sep 17 00:00:00 2001 From: Alex Peck Date: Mon, 30 Jun 2025 14:38:14 -0700 Subject: [PATCH 2/4] update infer --- .github/workflows/infer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/infer.yml b/.github/workflows/infer.yml index 37facd8e..a929936b 100644 --- a/.github/workflows/infer.yml +++ b/.github/workflows/infer.yml @@ -31,6 +31,6 @@ jobs: binary-path: BitFaster.Caching/bin - name: Upload SARIF output to GitHub Security Center - uses: github/codeql-action/upload-sarif@v2 + uses: github/codeql-action/upload-sarif@v3 with: sarif_file: infer-out/report.sarif \ No newline at end of file From 78cfaf273853d7b0b773eb7a6ec60e36b5d3a335 Mon Sep 17 00:00:00 2001 From: Alex Peck Date: Mon, 30 Jun 2025 17:22:31 -0700 Subject: [PATCH 3/4] only upload on success --- .github/workflows/gate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/gate.yml b/.github/workflows/gate.yml index 1816acd9..c734d5a9 100644 --- a/.github/workflows/gate.yml +++ b/.github/workflows/gate.yml @@ -135,6 +135,7 @@ jobs: name: Coveralls Finished needs: build runs-on: ubuntu-latest + if: ${{ success() }} # Only run if all build jobs succeed steps: - name: Coveralls Finished uses: coverallsapp/github-action@master From bb7acb8a737ab93ff19ffac0f978067ab28e7f6a Mon Sep 17 00:00:00 2001 From: Alex Peck Date: Mon, 30 Jun 2025 17:36:06 -0700 Subject: [PATCH 4/4] std has net9 target --- .../BitFaster.Caching.UnitTests.Std.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BitFaster.Caching.UnitTests.Std/BitFaster.Caching.UnitTests.Std.csproj b/BitFaster.Caching.UnitTests.Std/BitFaster.Caching.UnitTests.Std.csproj index e8dedd76..ccbe19c1 100644 --- a/BitFaster.Caching.UnitTests.Std/BitFaster.Caching.UnitTests.Std.csproj +++ b/BitFaster.Caching.UnitTests.Std/BitFaster.Caching.UnitTests.Std.csproj @@ -1,7 +1,7 @@  - net6.0 + net6.0;net9.0 9.0