From bdcb4865c0f5f8a38ebbe26908668c3fc26823f8 Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Sun, 23 Jul 2023 23:10:40 +0100 Subject: [PATCH] Actions: dependency caching chances are this probably won't do much, i'll revert this commit if this doesn't --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 294c81f..dfb1ea3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,14 @@ jobs: - uses: actions/setup-dotnet@v3 with: - dotnet-version: '6.x' + dotnet-version: '6.0.x' + + - uses: actions/cache@v3 + with: + path: ~/.nuget/packages + key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} + restore-keys: | + ${{ runner.os }}-nuget - name: Restore dependencies run: dotnet restore