Skip to content

Commit

Permalink
Merge pull request #647 from Aguafrommars/fix/dependencies
Browse files Browse the repository at this point in the history
update packages
  • Loading branch information
aguacongas authored Feb 21, 2022
2 parents afe0ccf + 6ca51a7 commit 3dd2194
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
include-prerelease: true
- name: Setup wasm tools
run: dotnet workload install wasm-tools
env:
GITHIB_FEED_TOKEN: ${{ secrets.GITHIB_FEED_TOKEN }}
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ jobs:
password: ${{ secrets.DOCKER_HUB_PAT }}
- name: Build and push TheIdServer Duende
id: docker_build_theidserver_duende
uses: docker/build-push-action@v2
uses: docker/build-push-action@v2
env:
GITHIB_FEED_TOKEN: ${{ secrets.GITHIB_FEED_TOKEN }}
with:
build-args: GITHIB_FEED_TOKEN=${{ secrets.GITHIB_FEED_TOKEN }}
push: true
file: src/Aguacongas.TheIdServer.Duende/Dockerfile
tags: aguacongas/theidserver.duende:${{ github.event.release.tag_name || 'next' }}
Expand All @@ -55,6 +56,7 @@ jobs:
env:
GITHIB_FEED_TOKEN: ${{ secrets.GITHIB_FEED_TOKEN }}
with:
build-args: GITHIB_FEED_TOKEN=${{ secrets.GITHIB_FEED_TOKEN }}
push: true
file: src/Aguacongas.TheIdServer.IS4/Dockerfile
tags: aguacongas/theidserver:${{ github.event.release.tag_name || 'next' }}
Expand All @@ -76,6 +78,7 @@ jobs:
env:
GITHIB_FEED_TOKEN: ${{ secrets.GITHIB_FEED_TOKEN }}
with:
build-args: GITHIB_FEED_TOKEN=${{ secrets.GITHIB_FEED_TOKEN }}
push: true
file: src/Aguacongas.TheIdServer.BlazorApp/Dockerfile
tags: aguacongas/theidserverapp:${{ github.event.release.tag_name || 'next' }}
1 change: 1 addition & 0 deletions src/Aguacongas.TheIdServer.BlazorApp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ARG GITHIB_FEED_TOKEN
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.

FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
Expand Down
1 change: 1 addition & 0 deletions src/Aguacongas.TheIdServer.Duende/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ARG GITHIB_FEED_TOKEN
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
WORKDIR /app
Expand Down
1 change: 1 addition & 0 deletions src/Aguacongas.TheIdServer.IS4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ARG GITHIB_FEED_TOKEN
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.

FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="6.0.2" />
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="6.0.2" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="6.15.1" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="6.16.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.2" />
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="5.2.9" />
<PackageReference Include="MongoDB.Driver" Version="2.14.1" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.15.1" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.16.0" />
<PackageReference Include="RavenDB.Client" Version="5.3.100" />
<PackageReference Include="StackExchange.Redis" Version="2.2.88" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="2.2.0" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.WsFederation" Version="6.15.1" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.WsFederation" Version="6.16.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="6.0.2" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="6.0.2" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="6.0.2" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.15.1" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.16.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 3dd2194

Please sign in to comment.