Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency Microsoft.AspNetCore.App to v2.2.6 #612

Merged
merged 3 commits into from
Jul 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azure-devops/agents-scraper-release-official.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resources:
trigger: none
pr: none
variables:
DotNet.SDK.Version: '2.2.300'
DotNet.SDK.Version: '2.2.301'
Image.Name: 'tomkerkhove/promitor-agent-scraper'
Image.TaggedName: '$(Image.Name):$(Image.Version)'
Release.TagName: '$(Build.BuildNumber)'
Expand Down
2 changes: 1 addition & 1 deletion .azure-devops/agents-scraper-release-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resources:
trigger: none
pr: none
variables:
DotNet.SDK.Version: '2.2.300'
DotNet.SDK.Version: '2.2.301'
Image.Name: 'tomkerkhove/promitor-agent-scraper'
Image.TaggedName: '$(Image.Name):$(Image.Version)'
Release.TagName: '$(Build.BuildNumber)'
Expand Down
2 changes: 1 addition & 1 deletion .azure-devops/scraper-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pr:
- .azure-devops/scraper-ci.yml
- charts/promitor-agent-scraper/*
variables:
DotNet.SDK.Version: '2.2.300'
DotNet.SDK.Version: '2.2.301'
Image.Name: 'tomkerkhove/promitor-agent-scraper-ci'
Image.TaggedName: '$(Image.Name):$(Build.BuildNumber)'
stages:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<ItemGroup>
<PackageReference Include="Guard.NET" Version="1.2.0" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.5" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.6" />
<PackageReference Include="Microsoft.Azure.Management.Fluent" Version="1.23.0" />
<PackageReference Include="Microsoft.Azure.Management.Monitor.Fluent" Version="1.23.0" />
<PackageReference Include="Microsoft.Data.OData" Version="5.8.4" />
Expand Down
4 changes: 2 additions & 2 deletions src/Promitor.Scraper.Host/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/core/sdk:2.2.300-alpine3.9 AS build
FROM mcr.microsoft.com/dotnet/core/sdk:2.2.301-alpine3.9 AS build
WORKDIR /src
COPY Promitor.Core/* Promitor.Core/
COPY Promitor.Core.Scraping/* Promitor.Core.Scraping/
Expand All @@ -10,7 +10,7 @@ COPY Promitor.Scraper.Host/* Promitor.Scraper.Host/
RUN dotnet --info
RUN dotnet publish Promitor.Scraper.Host/Promitor.Scraper.Host.csproj --configuration release -o app

FROM mcr.microsoft.com/dotnet/core/aspnet:2.2.5-alpine3.9 as runtime
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2.6-alpine3.9 as runtime
WORKDIR /app
COPY --from=build /src/Promitor.Scraper.Host/app .

Expand Down
2 changes: 1 addition & 1 deletion src/Promitor.Scraper.Host/Promitor.Scraper.Host.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<ItemGroup>
<PackageReference Include="CronScheduler.AspNetCore" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.5" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.6" />
<PackageReference Include="Prometheus.Client.AspNetCore" Version="3.0.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="4.0.1" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="4.0.1" />
Expand Down