Skip to content

Commit

Permalink
Actions: dependency caching
Browse files Browse the repository at this point in the history
chances are this probably won't do much, i'll revert this commit if this doesn't
  • Loading branch information
pizzaboxer committed Jul 23, 2023
1 parent 39fe775 commit bdcb486
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bdcb486

Please sign in to comment.