diff options
-rw-r--r-- | .github/workflows/back-ci.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/cd-version.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/cd.yaml | 2 | ||||
-rw-r--r-- | BackEnd/Timeline.Tests/Properties/launchSettings.json | 2 | ||||
-rw-r--r-- | BackEnd/Timeline.Tests/Timeline.Tests.csproj | 2 | ||||
-rw-r--r-- | BackEnd/Timeline.Tests/packages.lock.json | 6 | ||||
-rw-r--r-- | BackEnd/Timeline/Properties/launchSettings.json | 8 |
7 files changed, 8 insertions, 18 deletions
diff --git a/.github/workflows/back-ci.yaml b/.github/workflows/back-ci.yaml index fa934f44..8fb71651 100644 --- a/.github/workflows/back-ci.yaml +++ b/.github/workflows/back-ci.yaml @@ -23,10 +23,10 @@ jobs: NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Restore Cache
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ${{ env.NUGET_PACKAGES }}
key: nuget-${{ runner.os }}-${{ hashFiles('BackEnd/**/packages.lock.json') }}
diff --git a/.github/workflows/cd-version.yaml b/.github/workflows/cd-version.yaml index 1479e0e6..62ba4b3b 100644 --- a/.github/workflows/cd-version.yaml +++ b/.github/workflows/cd-version.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
-
name: Prepare
diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index a9ebddd8..49208147 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
diff --git a/BackEnd/Timeline.Tests/Properties/launchSettings.json b/BackEnd/Timeline.Tests/Properties/launchSettings.json deleted file mode 100644 index f3ee419d..00000000 --- a/BackEnd/Timeline.Tests/Properties/launchSettings.json +++ /dev/null @@ -1,2 +0,0 @@ -{
-}
diff --git a/BackEnd/Timeline.Tests/Timeline.Tests.csproj b/BackEnd/Timeline.Tests/Timeline.Tests.csproj index ce1ac536..86af546a 100644 --- a/BackEnd/Timeline.Tests/Timeline.Tests.csproj +++ b/BackEnd/Timeline.Tests/Timeline.Tests.csproj @@ -12,7 +12,7 @@ <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="FluentAssertions" Version="6.7.0" />
+ <PackageReference Include="FluentAssertions" Version="6.8.0" />
<PackageReference Include="MartinCostello.Logging.XUnit" Version="0.3.0" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.9" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="6.0.10" />
diff --git a/BackEnd/Timeline.Tests/packages.lock.json b/BackEnd/Timeline.Tests/packages.lock.json index cc7ccdc9..fbbaec7a 100644 --- a/BackEnd/Timeline.Tests/packages.lock.json +++ b/BackEnd/Timeline.Tests/packages.lock.json @@ -10,9 +10,9 @@ }, "FluentAssertions": { "type": "Direct", - "requested": "[6.7.0, )", - "resolved": "6.7.0", - "contentHash": "PWbow/R3MnYDP8UW7zh/w80rGb+1NufGoNJeuzouTo2bqpvwNTFxbDwF6XWfFZ5IuquL2225Um+qSyZ8jVsT+w==", + "requested": "[6.8.0, )", + "resolved": "6.8.0", + "contentHash": "NfSlAG97wMxS48Ov+wQEhJITdn4bKrgtKrG4sCPrFBVKozpC57lQ2vzsPdxUOsPbfEgEQTMtvCDECxIlDBfgNA==", "dependencies": { "System.Configuration.ConfigurationManager": "4.4.0" } diff --git a/BackEnd/Timeline/Properties/launchSettings.json b/BackEnd/Timeline/Properties/launchSettings.json index e081e0f3..a5b3b51c 100644 --- a/BackEnd/Timeline/Properties/launchSettings.json +++ b/BackEnd/Timeline/Properties/launchSettings.json @@ -22,14 +22,6 @@ "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Staging" } - }, - "Timeline": { - "commandName": "Project", - "launchBrowser": true, - "applicationUrl": "http://localhost:49414", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } } } }
\ No newline at end of file |