diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 48b38f7..bb181ac 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,13 +3,13 @@ "isRoot": true, "tools": { "microsoft.sbom.dotnettool": { - "version": "2.2.6", + "version": "3.0.1", "commands": [ "sbom-tool" ] }, "demaconsulting.spdxtool": { - "version": "1.1.0", + "version": "2.2.0", "commands": [ "spdx-tool" ] diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1a5c55c..f548998 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -14,7 +14,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: @@ -29,7 +29,7 @@ jobs: - uses: nuget/setup-nuget@v2 with: - nuget-version: '6.x' + nuget-version: latest - name: Restore Tools run: > diff --git a/.github/workflows/build_on_push.yaml b/.github/workflows/build_on_push.yaml index a68fe89..8c0cba6 100644 --- a/.github/workflows/build_on_push.yaml +++ b/.github/workflows/build_on_push.yaml @@ -8,5 +8,5 @@ jobs: uses: ./.github/workflows/build.yaml with: wrapper: 1.1.0 - pandoc: 3.2.1 + pandoc: 3.6.1 version: 0.0.0-run.${{ github.run_number }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 05e9125..2800a09 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -39,7 +39,7 @@ jobs: contents: write packages: write - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: build @@ -47,9 +47,11 @@ jobs: - uses: actions/checkout@v4 - - uses: nuget/setup-nuget@v2 + - name: Setup dotnet 8 + uses: actions/setup-dotnet@v4 with: - nuget-version: '6.x' + dotnet-version: | + 8.x - name: Download Artifacts uses: actions/download-artifact@v4