diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 0cc262b..a706dfd 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.x.x + dotnet-version: 10.x.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/.github/workflows/deploy-dev-image.yml b/.github/workflows/deploy-dev-image.yml index 9a5d87e..c656536 100644 --- a/.github/workflows/deploy-dev-image.yml +++ b/.github/workflows/deploy-dev-image.yml @@ -21,7 +21,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.x.x + dotnet-version: 10.x.x - name: Restore dependencies run: dotnet restore diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d89d852..4e5b6ee 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,7 +23,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.x.x + dotnet-version: 10.x.x - name: Restore dependencies run: dotnet restore diff --git a/.gitmodules b/.gitmodules index 22db6b8..de27b82 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "SS14.GithubApiHelper"] path = SS14.GithubApiHelper - url = git@github.com:juliangiebel/SS14.GithubApiHelper.git + url = https://github.com/space-wizards/SS14.GithubApiHelper.git diff --git a/Dockerfile b/Dockerfile index 25cc1eb..e5f6ac3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS base +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS base WORKDIR /app EXPOSE 80 -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build WORKDIR /src COPY ["SS14.MapServer/SS14.MapServer.csproj", "SS14.MapServer/"] RUN dotnet restore "SS14.MapServer/SS14.MapServer.csproj" diff --git a/SS14.MapServer.Tests/SS14.MapServer.Tests.csproj b/SS14.MapServer.Tests/SS14.MapServer.Tests.csproj index 3f4f60b..295f391 100644 --- a/SS14.MapServer.Tests/SS14.MapServer.Tests.csproj +++ b/SS14.MapServer.Tests/SS14.MapServer.Tests.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable diff --git a/SS14.MapServer/SS14.MapServer.csproj b/SS14.MapServer/SS14.MapServer.csproj index de1fe3b..114d1b5 100644 --- a/SS14.MapServer/SS14.MapServer.csproj +++ b/SS14.MapServer/SS14.MapServer.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable Linux