From 858283abf8587327d7bfc4ce3155810ec3928457 Mon Sep 17 00:00:00 2001 From: Michael Fyffe <6224270+TraGicCode@users.noreply.github.com> Date: Mon, 16 Feb 2026 10:27:20 -0600 Subject: [PATCH] Have PR build not use dev container to prevent dependabot build failure with .net updates --- .github/workflows/pull_request.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c71b603..e545252 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -4,17 +4,22 @@ on: pull_request: schedule: # Runs every night at 2 AM UTC. This is to detect flakey builds - - cron: '0 2 * * *' + - cron: "0 2 * * *" jobs: build: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v6 + - name: Checkout + uses: actions/checkout@v6 - - name: Run Build in Dev Container - uses: devcontainers/ci@v0.3 - with: - runCmd: | + - name: Setup .NET SDK + uses: actions/setup-dotnet@v5 + with: + # Use the .NET SDK from global.json in the root of the repository. + global-json-file: global.json + + - name: Build + run: | + dotnet tool restore dotnet cake