Skip to content

Commit

Permalink
Update dependency Microsoft.AspNetCore.App to v2.2.6 (#612)
Browse files Browse the repository at this point in the history
* Update dependency Microsoft.AspNetCore.App to v2.2.6

* Update .NET Core SDK in builds

* Update Docker dependencies
  • Loading branch information
renovate[bot] authored and tomkerkhove committed Jul 10, 2019
1 parent 045d4ff commit 489a655
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
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

0 comments on commit 489a655

Please sign in to comment.