From 3cba582cf2a51eddd39040443d875e8f68be2063 Mon Sep 17 00:00:00 2001 From: Mark Ridgwell Date: Mon, 14 Oct 2024 10:38:20 +0100 Subject: [PATCH] removed 9.0 --- .github/actions/build-tools/action.yml | 1 - .github/actions/dotnet-tool/action.yml | 4 ++-- .github/workflows/pr-lint.yml | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/actions/build-tools/action.yml b/.github/actions/build-tools/action.yml index bbac20c8..75736008 100644 --- a/.github/actions/build-tools/action.yml +++ b/.github/actions/build-tools/action.yml @@ -61,7 +61,6 @@ runs: 6.0.* 7.0.* 8.0.* - 9.0.* ${{env.DOTNET_VERSION}} - name: "Configure nuget feeds" diff --git a/.github/actions/dotnet-tool/action.yml b/.github/actions/dotnet-tool/action.yml index e0d0d7e2..bd8d771a 100644 --- a/.github/actions/dotnet-tool/action.yml +++ b/.github/actions/dotnet-tool/action.yml @@ -17,7 +17,7 @@ runs: - name: "Install dotnet tool (Latest)" if: inputs.TOOL_VERSION == 'latest' shell: bash - run: dotnet tool install --local ${{inputs.TOOL_NAME}} + run: dotnet tool install --local --ignore-failed-sources ${{inputs.TOOL_NAME}} env: DOTNET_ROOT: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}" DOTNET_INSTALL_DIR: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}" @@ -34,7 +34,7 @@ runs: - name: "Install dotnet tool (Specific Version)" if: inputs.TOOL_VERSION != 'latest' shell: bash - run: dotnet tool install --local ${{inputs.TOOL_NAME}} --version ${{inputs.TOOL_VERSION}} + run: dotnet tool install --local --ignore-failed-sources ${{inputs.TOOL_NAME}} --version ${{inputs.TOOL_VERSION}} env: DOTNET_ROOT: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}" DOTNET_INSTALL_DIR: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}" diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index dfcb7122..96b0b025 100644 --- a/.github/workflows/pr-lint.yml +++ b/.github/workflows/pr-lint.yml @@ -129,7 +129,6 @@ jobs: 6.0.* 7.0.* 8.0.* - 9.0.* ${{env.DOTNET_VERSION}} - name: "Check Runner details"