From 951ef8c8e9039f8bc1b4bf5c0ec649c3e82deb50 Mon Sep 17 00:00:00 2001 From: Tyler Date: Mon, 10 Jun 2024 21:01:29 -0400 Subject: [PATCH] Update NuGet Restore --- .github/workflows/ct-matrix.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ct-matrix.yml b/.github/workflows/ct-matrix.yml index b4f8ef0..d2c33e4 100644 --- a/.github/workflows/ct-matrix.yml +++ b/.github/workflows/ct-matrix.yml @@ -72,6 +72,12 @@ jobs: uses: actions/setup-dotnet@v2 with: dotnet-version: ${{ matrix.dotnet-version }} + + - name: Setup NuGet + uses: NuGet/setup-nuget@v2.0.0 + + - name: Restore NuGet + run: nuget restore ${{ env.PROJECT_FILE_PATH }} - name: Restore Dependencies if: ${{ !fromJSON(steps.getCanSkip.outputs.result) }}