From 5764b5438a6f0c84a9891a4062c4c11058fc785c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Pe=C3=B1alba?= Date: Fri, 2 Aug 2024 16:17:01 +0200 Subject: [PATCH] Update nuget.yml to use newer actions --- .github/workflows/nuget.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index 5327a71..b4c3019 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Extract branch name shell: bash @@ -22,13 +22,13 @@ jobs: id: extract_branch - name: Setup NuGet - uses: NuGet/setup-nuget@v1.1.1 + uses: NuGet/setup-nuget@v2 - name: Restore dependencies run: nuget restore $SOLUTION - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 6.0.x