From: gendelo3 Date: Thu, 1 Aug 2024 10:19:05 +0000 (+0200) Subject: Update build.yml X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=834b891f2316876d329524aef99fa42d88c12feb;p=rhonda%2Ftheotherroles.git Update build.yml --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd61d49..355d5f7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: | ~/.nuget/packages @@ -18,13 +18,12 @@ jobs: key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} restore-keys: | ${{ runner.os }}-nuget- - - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: true - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: dotnet-version: 6.x @@ -32,8 +31,7 @@ jobs: run: dotnet build TheOtherRoles/TheOtherRoles.csproj --configuration Release - name: Upload TheOtherRoles - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: TheOtherRoles.dll path: TheOtherRoles/bin/Release/net6.0/TheOtherRoles.dll -