From d6ce1e38d8964adcbd2d0d0dd286f848914d53a2 Mon Sep 17 00:00:00 2001 From: "jet-codeflow-maintainer[bot]" <131594757+jet-codeflow-maintainer[bot]@users.noreply.github.com> Date: Tue, 11 Jun 2024 17:24:22 +0000 Subject: [PATCH] Update .NET SDK to 8.0.302 (#475) * Update .NET SDK Update .NET SDK to version 8.0.302. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: jet-codeflow-maintainer[bot] <131594757+jet-codeflow-maintainer[bot]@users.noreply.github.com> * Disable SBOM generation Disable SBOM generation on Windows due to issue. --------- Signed-off-by: jet-codeflow-maintainer[bot] <131594757+jet-codeflow-maintainer[bot]@users.noreply.github.com> Co-authored-by: jet-codeflow-maintainer[bot] <131594757+jet-codeflow-maintainer[bot]@users.noreply.github.com> Co-authored-by: Martin Costello --- .github/workflows/build.yml | 1 + global.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a61aef8a..e2a1f3d7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,6 +54,7 @@ jobs: - name: Generate SBOM uses: anchore/sbom-action@e8d2a6937ecead383dfe75190d104edd1f9c5751 # v0.16.0 + if: runner.os != 'Windows' # HACK Disabled due to https://github.com/anchore/sbom-action/issues/472 with: artifact-name: build-${{ matrix.os-name }}.spdx.json output-file: ./artifacts/build.spdx.json diff --git a/global.json b/global.json index 8159382b..0f17001c 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.301", + "version": "8.0.302", "allowPrerelease": false, "rollForward": "latestMajor" }