From b5260804ba85cd866fc91755b32a682e594c5b82 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 18:56:51 +0000 Subject: [PATCH 1/2] fix(deps): update dotnet monorepo --- src/oidc-guard/Dockerfile | 4 ++-- src/oidc-guard/oidc-guard.csproj | 4 ++-- tests/oidc-guard-tests/oidc-guard-tests.csproj | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/oidc-guard/Dockerfile b/src/oidc-guard/Dockerfile index b55c31b..f040ec6 100644 --- a/src/oidc-guard/Dockerfile +++ b/src/oidc-guard/Dockerfile @@ -1,6 +1,6 @@ ARG BUILDPLATFORM=linux/amd64 -FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0-alpine@sha256:fcf11110dd72ac7d83edc1d0103024a055476eb8c78add62557317f0f9c42eb6 AS build +FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0-alpine@sha256:511cf412bc1aef686c32b84343901a85b24f8c4f343e9cb77bab75f905b411dd AS build WORKDIR /src COPY oidc-guard.csproj . RUN dotnet restore "oidc-guard.csproj" @@ -11,7 +11,7 @@ FROM build AS publish ARG VERSION=0.0.1 RUN dotnet publish "oidc-guard.csproj" -c Release --use-current-runtime -o /app/publish /p:Version=${VERSION} -FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-alpine@sha256:5a8a7d56f703d2d2ccc6b8290621172c34fda375671b8b47691f844ecdc552ef AS base +FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-alpine@sha256:1022884b06713e3bae5da5762bddc1c456643fbea810c0532e648ea0551222e0 AS base WORKDIR /app EXPOSE 8080 ENV ASPNETCORE_URLS=http://+:8080 diff --git a/src/oidc-guard/oidc-guard.csproj b/src/oidc-guard/oidc-guard.csproj index 6e70934..2e85ca9 100644 --- a/src/oidc-guard/oidc-guard.csproj +++ b/src/oidc-guard/oidc-guard.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/tests/oidc-guard-tests/oidc-guard-tests.csproj b/tests/oidc-guard-tests/oidc-guard-tests.csproj index 3d20920..698514d 100644 --- a/tests/oidc-guard-tests/oidc-guard-tests.csproj +++ b/tests/oidc-guard-tests/oidc-guard-tests.csproj @@ -15,7 +15,7 @@ all - + @@ -23,7 +23,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + From 6618f0068f0e92e5c83aef57946813307fdf1949 Mon Sep 17 00:00:00 2001 From: Ivan Josipovic <9521987+IvanJosipovic@users.noreply.github.com> Date: Tue, 10 Oct 2023 11:58:06 -0700 Subject: [PATCH 2/2] Update global.json --- global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index 246d622..d67aac5 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "8.0.100-rc.1.23455.8", - "rollForward": "disable", + "version": "8.0.0", + "rollForward": "latestFeature", "allowPrerelease": true } }