From 547c431c4338729b06559173fc9f287c1c9b041e Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Wed, 22 May 2024 02:16:22 +0100 Subject: [PATCH] update github action --- .github/workflows/{msbuildnet6.yml => msbuildnet.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{msbuildnet6.yml => msbuildnet.yml} (94%) diff --git a/.github/workflows/msbuildnet6.yml b/.github/workflows/msbuildnet.yml similarity index 94% rename from .github/workflows/msbuildnet6.yml rename to .github/workflows/msbuildnet.yml index bee12ac61c..69d8153f15 100644 --- a/.github/workflows/msbuildnet6.yml +++ b/.github/workflows/msbuildnet.yml @@ -13,7 +13,7 @@ jobs: if: github.repository == 'opensim/opensim' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: shortsha id: vars run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" @@ -21,9 +21,9 @@ jobs: run: bash ${GITHUB_WORKSPACE}/runprebuild.sh - name: Setup dotnet - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: - dotnet-version: '6.0.x' + dotnet-version: '8.0.x' - name: Build id: build run: dotnet build --configuration Release OpenSim.sln