diff --git a/build/azure-devops/docs-ci.yml b/build/azure-devops/docs-ci.yml index afccb812b..c9fa31c2a 100644 --- a/build/azure-devops/docs-ci.yml +++ b/build/azure-devops/docs-ci.yml @@ -11,7 +11,7 @@ pr: - docs/* - changelog/* variables: - DotNet.SDK.Version: '3.1.407' + DotNet.SDK.Version: '3.1.408' DotNet.Configuration: 'release' Image.Name: 'ghcr.io/tomkerkhove/promitor-agent-scraper-ci' Image.TaggedName: '$(Image.Name):$(Build.BuildNumber)' diff --git a/build/azure-devops/variables/build.yml b/build/azure-devops/variables/build.yml index 213ebc95e..b5ac9c68a 100644 --- a/build/azure-devops/variables/build.yml +++ b/build/azure-devops/variables/build.yml @@ -1,3 +1,3 @@ variables: - DotNet.Sdk.Version: '3.1.407' + DotNet.Sdk.Version: '3.1.408' DotNet.Configuration: 'release' diff --git a/src/Promitor.Agents.Core/Promitor.Agents.Core.csproj b/src/Promitor.Agents.Core/Promitor.Agents.Core.csproj index b0dfacdcd..9c56a65cb 100644 --- a/src/Promitor.Agents.Core/Promitor.Agents.Core.csproj +++ b/src/Promitor.Agents.Core/Promitor.Agents.Core.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux index 759563419..74b90adbd 100644 --- a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux +++ b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/core/sdk:3.1.407-alpine3.12 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.408-alpine3.12 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/ @@ -8,7 +8,7 @@ COPY Promitor.Core/* Promitor.Core/ COPY Promitor.Integrations.Azure/* Promitor.Integrations.Azure/ RUN dotnet publish Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj --configuration release --output /app /p:Version=$VERSION -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.13-alpine3.12 AS runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.14-alpine3.12 AS runtime WORKDIR /app ENV PROMITOR_CONFIG_FOLDER="/config/" COPY --from=build /app . diff --git a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows index b12e188ce..aef511369 100644 --- a/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows +++ b/src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/core/sdk:3.1.407 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.408 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/ @@ -8,7 +8,7 @@ COPY Promitor.Core/* Promitor.Core/ COPY Promitor.Integrations.Azure/* Promitor.Integrations.Azure/ RUN dotnet publish Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj --configuration release --output /app /p:Version=%VERSION% -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.13 AS runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.14 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 76f6ce97a..ff09866b1 100644 --- a/src/Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj +++ b/src/Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj @@ -3,7 +3,7 @@ netcoreapp3.1 ..\docker-compose.dcproj - 3.1.13 + 3.1.14 true Docs\Open-Api.xml 159d036b-3697-40d4-bdc4-7d9736521375 diff --git a/src/Promitor.Agents.Scraper/Dockerfile.linux b/src/Promitor.Agents.Scraper/Dockerfile.linux index 18188a18b..2a0ecb9fa 100644 --- a/src/Promitor.Agents.Scraper/Dockerfile.linux +++ b/src/Promitor.Agents.Scraper/Dockerfile.linux @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/core/sdk:3.1.407-alpine3.12 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.408-alpine3.12 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Core/* Promitor.Core/ @@ -15,7 +15,7 @@ COPY Promitor.Integrations.Sinks.Prometheus/* Promitor.Integrations.Sinks.Promet 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/core/aspnet:3.1.13-alpine3.12 as runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.14-alpine3.12 as runtime WORKDIR /app ENV PROMITOR_CONFIG_FOLDER="/config/" diff --git a/src/Promitor.Agents.Scraper/Dockerfile.windows b/src/Promitor.Agents.Scraper/Dockerfile.windows index c22980462..917e91b73 100644 --- a/src/Promitor.Agents.Scraper/Dockerfile.windows +++ b/src/Promitor.Agents.Scraper/Dockerfile.windows @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/core/sdk:3.1.407 AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.408 AS build WORKDIR /src ARG VERSION="UNSET-VERSION" COPY Promitor.Core/* Promitor.Core/ @@ -15,7 +15,7 @@ COPY Promitor.Integrations.Sinks.Prometheus/* Promitor.Integrations.Sinks.Promet 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/core/aspnet:3.1.13 as runtime +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.14 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 b0c3782f4..31d053416 100644 --- a/src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj +++ b/src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj @@ -3,7 +3,7 @@ netcoreapp3.1 ..\docker-compose.dcproj - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Core.Contracts/Promitor.Core.Contracts.csproj b/src/Promitor.Core.Contracts/Promitor.Core.Contracts.csproj index c37037b98..ac321bc02 100644 --- a/src/Promitor.Core.Contracts/Promitor.Core.Contracts.csproj +++ b/src/Promitor.Core.Contracts/Promitor.Core.Contracts.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Core.Scraping/Promitor.Core.Scraping.csproj b/src/Promitor.Core.Scraping/Promitor.Core.Scraping.csproj index ed93f4d33..38631f9f4 100644 --- a/src/Promitor.Core.Scraping/Promitor.Core.Scraping.csproj +++ b/src/Promitor.Core.Scraping/Promitor.Core.Scraping.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 8 diff --git a/src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj b/src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj index 1f532c01a..fc27d236e 100644 --- a/src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj +++ b/src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Core/Promitor.Core.csproj b/src/Promitor.Core/Promitor.Core.csproj index 42c8633bb..2a40c3831 100644 --- a/src/Promitor.Core/Promitor.Core.csproj +++ b/src/Promitor.Core/Promitor.Core.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Integrations.Azure/Promitor.Integrations.Azure.csproj b/src/Promitor.Integrations.Azure/Promitor.Integrations.Azure.csproj index d6295bb9b..836cf71c6 100644 --- a/src/Promitor.Integrations.Azure/Promitor.Integrations.Azure.csproj +++ b/src/Promitor.Integrations.Azure/Promitor.Integrations.Azure.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Integrations.AzureMonitor/Promitor.Integrations.AzureMonitor.csproj b/src/Promitor.Integrations.AzureMonitor/Promitor.Integrations.AzureMonitor.csproj index 497e77078..96ed0938f 100644 --- a/src/Promitor.Integrations.AzureMonitor/Promitor.Integrations.AzureMonitor.csproj +++ b/src/Promitor.Integrations.AzureMonitor/Promitor.Integrations.AzureMonitor.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Integrations.AzureStorage/Promitor.Integrations.AzureStorage.csproj b/src/Promitor.Integrations.AzureStorage/Promitor.Integrations.AzureStorage.csproj index 289e3bb3d..e56e2c1b3 100644 --- a/src/Promitor.Integrations.AzureStorage/Promitor.Integrations.AzureStorage.csproj +++ b/src/Promitor.Integrations.AzureStorage/Promitor.Integrations.AzureStorage.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 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 b78eb48b9..33913f26e 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 @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Integrations.Sinks.Prometheus/Promitor.Integrations.Sinks.Prometheus.csproj b/src/Promitor.Integrations.Sinks.Prometheus/Promitor.Integrations.Sinks.Prometheus.csproj index d86792f82..afdcd7bf9 100644 --- a/src/Promitor.Integrations.Sinks.Prometheus/Promitor.Integrations.Sinks.Prometheus.csproj +++ b/src/Promitor.Integrations.Sinks.Prometheus/Promitor.Integrations.Sinks.Prometheus.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Integrations.Sinks.Statsd/Promitor.Integrations.Sinks.Statsd.csproj b/src/Promitor.Integrations.Sinks.Statsd/Promitor.Integrations.Sinks.Statsd.csproj index 7a1926140..b1e420908 100644 --- a/src/Promitor.Integrations.Sinks.Statsd/Promitor.Integrations.Sinks.Statsd.csproj +++ b/src/Promitor.Integrations.Sinks.Statsd/Promitor.Integrations.Sinks.Statsd.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 diff --git a/src/Promitor.Tests.Integration/Promitor.Tests.Integration.csproj b/src/Promitor.Tests.Integration/Promitor.Tests.Integration.csproj index 6df8a2303..ed818e218 100644 --- a/src/Promitor.Tests.Integration/Promitor.Tests.Integration.csproj +++ b/src/Promitor.Tests.Integration/Promitor.Tests.Integration.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 true diff --git a/src/Promitor.Tests.Unit/Promitor.Tests.Unit.csproj b/src/Promitor.Tests.Unit/Promitor.Tests.Unit.csproj index dee422fe6..bdeb071d2 100644 --- a/src/Promitor.Tests.Unit/Promitor.Tests.Unit.csproj +++ b/src/Promitor.Tests.Unit/Promitor.Tests.Unit.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 3.1.13 + 3.1.14 true