From 79674d87cf1bbb78ec01d1d555a061019d7ce65e Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:19:18 +0530 Subject: [PATCH 1/4] fix: try dotnet 5.0.x for actions --- .github/workflows/dotnet-core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index a247324..bc7e3be 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -18,7 +18,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 3.1.x + dotnet-version: 5.1.x - name: Install dependencies run: dotnet restore Bot/Valkyrja.discord.csproj - name: Build From 42443ecfb6e8e8346d865a3d11add1e8f07c5ed9 Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:26:36 +0530 Subject: [PATCH 2/4] fix: check if 5.1.x works --- .github/workflows/dotnet-core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index bc7e3be..ffed351 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -18,7 +18,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.1.x + dotnet-version: 5.1.x - name: Install dependencies run: dotnet restore Bot/Valkyrja.discord.csproj - name: Build From 2d6c144297318b248e930b1e532ce2b33a320f23 Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:27:25 +0530 Subject: [PATCH 3/4] fix: use 5.0.x for actions --- .github/workflows/dotnet-core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index ffed351..271d370 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -18,7 +18,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.1.x + dotnet-version: 5.0.x - name: Install dependencies run: dotnet restore Bot/Valkyrja.discord.csproj - name: Build From 7e237031fb9f2db3f30a8e5fff654394e6de8db2 Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:29:00 +0530 Subject: [PATCH 4/4] fix: use dot net 6.0.x for github actions --- .github/workflows/dotnet-core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 271d370..9cba800 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -18,7 +18,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Install dependencies run: dotnet restore Bot/Valkyrja.discord.csproj - name: Build