From 931c6f5c09579aa6b89a48f2ae66325e7be8ea2f Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Tue, 14 Nov 2023 15:19:58 +0000
Subject: [PATCH] chore(deps): update .net
---
src/Promitor.Agents.Core/Promitor.Agents.Core.csproj | 2 +-
src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux | 4 ++--
src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows | 4 ++--
.../Promitor.Agents.ResourceDiscovery.csproj | 6 +++---
src/Promitor.Agents.Scraper/Dockerfile.linux | 4 ++--
src/Promitor.Agents.Scraper/Dockerfile.windows | 4 ++--
src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj | 4 ++--
src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj | 4 ++--
src/Promitor.Core/Promitor.Core.csproj | 4 ++--
.../Promitor.Integrations.Azure.csproj | 4 ++--
.../Promitor.Integrations.AzureStorage.csproj | 2 +-
.../Promitor.Integrations.LogAnalytics.csproj | 2 +-
.../Promitor.Integrations.Sinks.Atlassian.Statuspage.csproj | 2 +-
13 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/src/Promitor.Agents.Core/Promitor.Agents.Core.csproj b/src/Promitor.Agents.Core/Promitor.Agents.Core.csproj
index 2544bb50d..66b2c6d96 100644
--- a/src/Promitor.Agents.Core/Promitor.Agents.Core.csproj
+++ b/src/Promitor.Agents.Core/Promitor.Agents.Core.csproj
@@ -21,7 +21,7 @@
-
+
diff --git a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux
index 8b08a0a36..89ebba9dc 100644
--- a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux
+++ b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux
@@ -1,4 +1,4 @@
-FROM mcr.microsoft.com/dotnet/sdk:7.0.402-cbl-mariner2.0 AS build
+FROM mcr.microsoft.com/dotnet/sdk:7.0.403-cbl-mariner2.0 AS build
WORKDIR /src
ARG VERSION="UNSET-VERSION"
COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/
@@ -14,7 +14,7 @@ COPY Promitor.Integrations.Sinks.Core/* Promitor.Integrations.Sinks.Core/
COPY Promitor.Integrations.Sinks.Prometheus/* Promitor.Integrations.Sinks.Prometheus/
RUN dotnet publish Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj --configuration release --output /app /p:Version=$VERSION
-FROM mcr.microsoft.com/dotnet/aspnet:7.0.12-cbl-mariner2.0-distroless AS runtime-base
+FROM mcr.microsoft.com/dotnet/aspnet:7.0.13-cbl-mariner2.0-distroless AS runtime-base
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0 AS installer
diff --git a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows
index 4c4f64a8a..3df10003d 100644
--- a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows
+++ b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows
@@ -1,4 +1,4 @@
-FROM mcr.microsoft.com/dotnet/sdk:7.0.402 AS build
+FROM mcr.microsoft.com/dotnet/sdk:7.0.403 AS build
WORKDIR /src
ARG VERSION="UNSET-VERSION"
COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/
@@ -14,7 +14,7 @@ COPY Promitor.Integrations.Sinks.Core/* Promitor.Integrations.Sinks.Core/
COPY Promitor.Integrations.Sinks.Prometheus/* Promitor.Integrations.Sinks.Prometheus/
RUN dotnet publish Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj --configuration release --output /app /p:Version=%VERSION%
-FROM mcr.microsoft.com/dotnet/aspnet:7.0.12 AS runtime
+FROM mcr.microsoft.com/dotnet/aspnet:7.0.13 AS runtime
WORKDIR /app
ENV PROMITOR_CONFIG_FOLDER="c:/config/"
COPY --from=build /app .
diff --git a/src/Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj b/src/Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj
index d7ec54e74..89235a433 100644
--- a/src/Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj
+++ b/src/Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj
@@ -36,15 +36,15 @@
-
+
-
-
+
+
diff --git a/src/Promitor.Agents.Scraper/Dockerfile.linux b/src/Promitor.Agents.Scraper/Dockerfile.linux
index 98003e3bc..aa72a40b1 100644
--- a/src/Promitor.Agents.Scraper/Dockerfile.linux
+++ b/src/Promitor.Agents.Scraper/Dockerfile.linux
@@ -1,4 +1,4 @@
-FROM mcr.microsoft.com/dotnet/sdk:7.0.402-cbl-mariner2.0 AS build
+FROM mcr.microsoft.com/dotnet/sdk:7.0.403-cbl-mariner2.0 AS build
WORKDIR /src
ARG VERSION="UNSET-VERSION"
COPY Promitor.Core/* Promitor.Core/
@@ -18,7 +18,7 @@ COPY Promitor.Integrations.Sinks.Statsd/* Promitor.Integrations.Sinks.Statsd/
COPY Promitor.Agents.Scraper/* Promitor.Agents.Scraper/
RUN dotnet publish Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj --configuration release --output app /p:Version=$VERSION
-FROM mcr.microsoft.com/dotnet/aspnet:7.0.12-cbl-mariner2.0-distroless AS runtime-base
+FROM mcr.microsoft.com/dotnet/aspnet:7.0.13-cbl-mariner2.0-distroless AS runtime-base
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0 AS installer
diff --git a/src/Promitor.Agents.Scraper/Dockerfile.windows b/src/Promitor.Agents.Scraper/Dockerfile.windows
index 0e84890fb..f8db44601 100644
--- a/src/Promitor.Agents.Scraper/Dockerfile.windows
+++ b/src/Promitor.Agents.Scraper/Dockerfile.windows
@@ -1,4 +1,4 @@
-FROM mcr.microsoft.com/dotnet/sdk:7.0.402 AS build
+FROM mcr.microsoft.com/dotnet/sdk:7.0.403 AS build
WORKDIR /src
ARG VERSION="UNSET-VERSION"
COPY Promitor.Core/* Promitor.Core/
@@ -18,7 +18,7 @@ COPY Promitor.Integrations.Sinks.Statsd/* Promitor.Integrations.Sinks.Statsd/
COPY Promitor.Agents.Scraper/* Promitor.Agents.Scraper/
RUN dotnet publish Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj --configuration release --output app /p:Version=%VERSION%
-FROM mcr.microsoft.com/dotnet/aspnet:7.0.12 as runtime
+FROM mcr.microsoft.com/dotnet/aspnet:7.0.13 as runtime
WORKDIR /app
ENV PROMITOR_CONFIG_FOLDER="c:/config/"
diff --git a/src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj b/src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj
index 9323dd43c..61c05b52c 100644
--- a/src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj
+++ b/src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj
@@ -44,8 +44,8 @@
-
-
+
+
diff --git a/src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj b/src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj
index be025a62a..c91b2c2bd 100644
--- a/src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj
+++ b/src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/src/Promitor.Core/Promitor.Core.csproj b/src/Promitor.Core/Promitor.Core.csproj
index ac2fc1a9c..dd50c5733 100644
--- a/src/Promitor.Core/Promitor.Core.csproj
+++ b/src/Promitor.Core/Promitor.Core.csproj
@@ -19,8 +19,8 @@
-
-
+
+
diff --git a/src/Promitor.Integrations.Azure/Promitor.Integrations.Azure.csproj b/src/Promitor.Integrations.Azure/Promitor.Integrations.Azure.csproj
index ee789e991..3afb5fed3 100644
--- a/src/Promitor.Integrations.Azure/Promitor.Integrations.Azure.csproj
+++ b/src/Promitor.Integrations.Azure/Promitor.Integrations.Azure.csproj
@@ -17,8 +17,8 @@
-
-
+
+
diff --git a/src/Promitor.Integrations.AzureStorage/Promitor.Integrations.AzureStorage.csproj b/src/Promitor.Integrations.AzureStorage/Promitor.Integrations.AzureStorage.csproj
index 0b2da893d..cc0d17d44 100644
--- a/src/Promitor.Integrations.AzureStorage/Promitor.Integrations.AzureStorage.csproj
+++ b/src/Promitor.Integrations.AzureStorage/Promitor.Integrations.AzureStorage.csproj
@@ -8,7 +8,7 @@
-
+
diff --git a/src/Promitor.Integrations.LogAnalytics/Promitor.Integrations.LogAnalytics.csproj b/src/Promitor.Integrations.LogAnalytics/Promitor.Integrations.LogAnalytics.csproj
index 52e9123ab..b04a2630f 100644
--- a/src/Promitor.Integrations.LogAnalytics/Promitor.Integrations.LogAnalytics.csproj
+++ b/src/Promitor.Integrations.LogAnalytics/Promitor.Integrations.LogAnalytics.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/Promitor.Integrations.Sinks.Atlassian.Statuspage/Promitor.Integrations.Sinks.Atlassian.Statuspage.csproj b/src/Promitor.Integrations.Sinks.Atlassian.Statuspage/Promitor.Integrations.Sinks.Atlassian.Statuspage.csproj
index 47ae83eeb..38fe8b41b 100644
--- a/src/Promitor.Integrations.Sinks.Atlassian.Statuspage/Promitor.Integrations.Sinks.Atlassian.Statuspage.csproj
+++ b/src/Promitor.Integrations.Sinks.Atlassian.Statuspage/Promitor.Integrations.Sinks.Atlassian.Statuspage.csproj
@@ -15,7 +15,7 @@
-
+