From 673b2aee402e5daf97d76af3d2ec827c6fd5791c Mon Sep 17 00:00:00 2001 From: Lev Khobotov Date: Sat, 31 Aug 2024 13:00:08 +0300 Subject: [PATCH] Update github action versions --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4a840c5..fb7273f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,16 +42,17 @@ jobs: steps: # Checkout the repo - - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v4 # Setup .NET Core SDK - name: Setup .NET Core - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ env.DOTNET_VERSION }} - name: Set up dependency caching for faster builds - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}