From 454887023951a5cb6ff9b0bc6ade63db1daeb486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20R=C3=A4tzel?= Date: Wed, 9 Aug 2023 17:52:25 +0000 Subject: [PATCH] Apply recommended patches --- .github/workflows/build-native-tools.yml | 2 +- .github/workflows/publish-to-release.yml | 2 +- .github/workflows/test-and-publish.yml | 2 +- azure-pipelines.yml | 2 +- implement/Dockerfile | 4 ++-- implement/elm-time/Program.cs | 2 +- implement/elm-time/elm-time.csproj | 6 +++--- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-native-tools.yml b/.github/workflows/build-native-tools.yml index ad5c98ae..72360d9c 100644 --- a/.github/workflows/build-native-tools.yml +++ b/.github/workflows/build-native-tools.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.306' + dotnet-version: '7.0.400' - name: Try use dotnet run: dotnet --info diff --git a/.github/workflows/publish-to-release.yml b/.github/workflows/publish-to-release.yml index 054bbdaf..2638c6a8 100644 --- a/.github/workflows/publish-to-release.yml +++ b/.github/workflows/publish-to-release.yml @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.306' + dotnet-version: '7.0.400' - name: Try use dotnet run: dotnet --info diff --git a/.github/workflows/test-and-publish.yml b/.github/workflows/test-and-publish.yml index dd52db59..f820bdf0 100644 --- a/.github/workflows/test-and-publish.yml +++ b/.github/workflows/test-and-publish.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.306' + dotnet-version: '7.0.400' - name: Try use dotnet run: dotnet --info diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e7e715c3..e3dd2220 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,7 @@ steps: - task: UseDotNet@2 inputs: packageType: 'sdk' # Options: runtime, sdk - version: '7.0.306' + version: '7.0.400' includePreviewVersions: true - script: dotnet --version diff --git a/implement/Dockerfile b/implement/Dockerfile index 9cbafd1f..7c234e48 100644 --- a/implement/Dockerfile +++ b/implement/Dockerfile @@ -1,5 +1,5 @@ # Build dotnet build image -FROM mcr.microsoft.com/dotnet/sdk:7.0.306 AS build-env +FROM mcr.microsoft.com/dotnet/sdk:7.0.400 AS build-env WORKDIR /app # Copy everything and build @@ -8,7 +8,7 @@ WORKDIR /app/elm-time RUN dotnet publish -c Debug -o out # Build runtime image -FROM mcr.microsoft.com/dotnet/aspnet:7.0.9 AS binaries +FROM mcr.microsoft.com/dotnet/aspnet:7.1.0 AS binaries COPY --from=build-env /app/elm-time/out /elm-time/dotnet/ diff --git a/implement/elm-time/Program.cs b/implement/elm-time/Program.cs index fd3bb769..abdd0d67 100644 --- a/implement/elm-time/Program.cs +++ b/implement/elm-time/Program.cs @@ -18,7 +18,7 @@ namespace ElmTime; public class Program { - public static string AppVersionId => "2023-08-05"; + public static string AppVersionId => "2023-08-09"; private static int AdminInterfaceDefaultPort => 4000; diff --git a/implement/elm-time/elm-time.csproj b/implement/elm-time/elm-time.csproj index 87d6f1b6..989eb4c3 100644 --- a/implement/elm-time/elm-time.csproj +++ b/implement/elm-time/elm-time.csproj @@ -5,8 +5,8 @@ net7.0 ElmTime elm-time - 2023.0805.0.0 - 2023.0805.0.0 + 2023.0809.0.0 + 2023.0809.0.0 enable true @@ -40,7 +40,7 @@ - +