Skip to content

Commit fd10498

Browse files
authored
Merge pull request #261 from Azure/kamperiadis/dependencies
Bump dependencies
2 parents 067064f + 5a508a0 commit fd10498

23 files changed

+362
-507
lines changed

.github/workflows/run-e2e-tests-dotnet3-lcon.yaml renamed to .github/workflows/run-e2e-tests-dotnet8-lcon.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: RUN_E2E_TESTS_DOTNET3_LCON
1+
name: RUN_E2E_TESTS_DOTNET8_LCON
22
on:
33
push:
44
branches:
@@ -15,9 +15,9 @@ permissions:
1515
id-token: write
1616

1717
env:
18-
AZURE_FUNCTIONAPP_NAME: gae-fa-dotnet3-lcon
19-
AZURE_FUNCTIONAPP_PACKAGE_PATH: './tests/e2e/dotnet3'
20-
DOTNET_VERSION: '3.1.403'
18+
AZURE_FUNCTIONAPP_NAME: gae-fa-dotnet8-lcon
19+
AZURE_FUNCTIONAPP_PACKAGE_PATH: './tests/e2e/dotnet8'
20+
DOTNET_VERSION: '8.0.405'
2121

2222
jobs:
2323
run:
@@ -48,13 +48,12 @@ jobs:
4848
run: |
4949
pushd '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
5050
dotnet build --configuration Release --output ./output
51-
echo "$env:GITHUB_SHA" > ./output/sha.txt
5251
popd
5352
5453
- name: 'Login via Azure CLI'
5554
uses: azure/login@v1
5655
with:
57-
client-id: ${{ secrets.AZURE_CLIENT_ID_FA_DOTNET3_LCON }}
56+
client-id: ${{ secrets.AZURE_CLIENT_ID_FA_DOTNET8_LCON }}
5857
tenant-id: ${{ secrets.AZURE_TENANT_ID_FA_E2E_TESTS }}
5958
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID_FA_E2E_TESTS }}
6059

@@ -72,7 +71,7 @@ jobs:
7271
while ($i -lt 10) {
7372
sleep 10
7473
$RESPONSE = $(curl "${{ steps.fa.outputs.app-url }}/api/HttpTrigger")
75-
$RESULT = ($RESPONSE -eq "$env:GITHUB_SHA")
74+
$RESULT = ($RESPONSE -eq "Hello world")
7675
if ($RESULT) {
7776
exit 0
7877
}

.github/workflows/run-e2e-tests-dotnet3-wcon.yaml renamed to .github/workflows/run-e2e-tests-dotnet8-wcon.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: RUN_E2E_TESTS_DOTNET3_WCON
1+
name: RUN_E2E_TESTS_DOTNET8_WCON
22
on:
33
push:
44
branches:
@@ -15,9 +15,9 @@ permissions:
1515
id-token: write
1616

1717
env:
18-
AZURE_FUNCTIONAPP_NAME: gae-fa-dotnet3-wcon
19-
AZURE_FUNCTIONAPP_PACKAGE_PATH: './tests/e2e/dotnet3'
20-
DOTNET_VERSION: '3.1.403'
18+
AZURE_FUNCTIONAPP_NAME: gae-fa-dotnet8-wcon
19+
AZURE_FUNCTIONAPP_PACKAGE_PATH: './tests/e2e/dotnet8'
20+
DOTNET_VERSION: '8.0.405'
2121

2222
jobs:
2323
run:
@@ -48,13 +48,12 @@ jobs:
4848
run: |
4949
pushd '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
5050
dotnet build --configuration Release --output ./output
51-
echo "$env:GITHUB_SHA" > ./output/sha.txt
5251
popd
5352
5453
- name: 'Login via Azure CLI'
5554
uses: azure/login@v1
5655
with:
57-
client-id: ${{ secrets.AZURE_CLIENT_ID_FA_DOTNET3_WCON }}
56+
client-id: ${{ secrets.AZURE_CLIENT_ID_FA_DOTNET8_WCON }}
5857
tenant-id: ${{ secrets.AZURE_TENANT_ID_FA_E2E_TESTS }}
5958
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID_FA_E2E_TESTS }}
6059

@@ -72,7 +71,7 @@ jobs:
7271
while ($i -lt 10) {
7372
sleep 10
7473
$RESPONSE = $(curl "${{ steps.fa.outputs.app-url }}/api/HttpTrigger")
75-
$RESULT = ($RESPONSE -eq "$env:GITHUB_SHA")
74+
$RESULT = ($RESPONSE -eq "Hello world")
7675
if ($RESULT) {
7776
exit 0
7877
}

.github/workflows/run-e2e-tests-python37-lcon.yaml

Lines changed: 0 additions & 82 deletions
This file was deleted.

eng/ci/templates/jobs/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
displayName: 'Use .NET Core sdk'
5252
inputs:
5353
packageType: sdk
54-
version: 3.1.x
54+
version: 8.0.x
5555

5656
- task: DotNetCoreCLI@2
5757
inputs:
5858
command: 'build'
59-
projects: 'tests/e2e/dotnet3/*.csproj'
59+
projects: 'tests/e2e/dotnet8/*.csproj'
6060
displayName: 'Build project for csharp language'

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/e2e/dotnet3/HttpTrigger.cs

Lines changed: 0 additions & 25 deletions
This file was deleted.

tests/e2e/dotnet3/dotnet3.csproj

Lines changed: 0 additions & 21 deletions
This file was deleted.

tests/e2e/dotnet3/host.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

tests/e2e/dotnet3/sha.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)