Skip to content

Commit 5f31299

Browse files
authored
Update SDK to latest patch (#5307)
1 parent 346eb29 commit 5f31299

8 files changed

+12
-12
lines changed

.ci/make.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ output_folder=".ci/output"
1919
OUTPUT_DIR="$repo/${output_folder}"
2020
mkdir -p "$OUTPUT_DIR"
2121

22-
DOTNET_VERSION=${DOTNET_VERSION-5.0.100}
22+
DOTNET_VERSION=${DOTNET_VERSION-5.0.102}
2323

2424
echo -e "\033[34;1mINFO:\033[0m VERSION ${STACK_VERSION}\033[0m"
2525
echo -e "\033[34;1mINFO:\033[0m OUTPUT_DIR ${OUTPUT_DIR}\033[0m"

.ci/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $ STACK_VERSION=8.0.0-SNAPSHOT ./.ci/run-tests
3030
|-------------------------|-------------|-------------|
3131
| `STACK_VERSION` | `N/A` | The elasticsearch version to target
3232
| `TEST_SUITE` | `basic` | `free` or `platinum` sets which test suite to run and which container to run against. |
33-
| `DOTNET_VERSION` | `5.0.100` | The .NET sdk version used to grab the proper container |
33+
| `DOTNET_VERSION` | `5.0.102` | The .NET sdk version used to grab the proper container |
3434

3535
If you want to manually spin up elasticsearch for these tests and call the runner afterwards you can use
3636

.ci/run-repository.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ param(
1414
$NODE_NAME,
1515

1616
[string]
17-
$DOTNET_VERSION = "5.0.100"
17+
$DOTNET_VERSION = "5.0.102"
1818
)
1919

2020
$ESC = [char]27

.ci/run-repository.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ script_path=$(dirname $(realpath -s $0))
1010
source $script_path/functions/imports.sh
1111
set -euo pipefail
1212

13-
DOTNET_VERSION=${DOTNET_VERSION-5.0.100}
13+
DOTNET_VERSION=${DOTNET_VERSION-5.0.102}
1414
ELASTICSEARCH_URL=${ELASTICSEARCH_URL-"$elasticsearch_url"}
1515
elasticsearch_container=${elasticsearch_container-}
1616

.ci/run-tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ param (
88
$TEST_SUITE = "free",
99

1010
[string]
11-
$DOTNET_VERSION = "5.0.100"
11+
$DOTNET_VERSION = "5.0.102"
1212
)
1313

1414
$ESC = [char]27

.ci/test-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ TEST_SUITE:
88
- platinum
99

1010
DOTNET_VERSION:
11-
- 5.0.100
11+
- 5.0.102
1212

1313
exclude: ~

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ environment:
66
DOTNET_CLI_TELEMETRY_OPTOUT: true
77
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
88
install:
9-
- cmd: choco install dotnet-5.0-sdk --version 5.0.100
9+
- cmd: choco install dotnet-5.0-sdk --version 5.0.102
1010
build_script:
1111
- cmd: build.bat canary
1212

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- task: UseDotNet@2
2020
inputs:
21-
version: '5.0.100'
21+
version: '5.0.102'
2222
- script: ./build.sh documentation
2323
displayName: 'Generate Documentation'
2424
- script: |
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- task: UseDotNet@2
3232
inputs:
33-
version: '5.0.100'
33+
version: '5.0.102'
3434
- script: ./build.sh test-one
3535
displayName: 'build and unit test'
3636
- task: PublishTestResults@2
@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
- task: UseDotNet@2
6464
inputs:
65-
version: '5.0.100'
65+
version: '5.0.102'
6666
- script: build.bat canary
6767
displayName: 'build and unit test'
6868
- task: PublishTestResults@2
@@ -84,7 +84,7 @@ jobs:
8484
steps:
8585
- task: UseDotNet@2
8686
inputs:
87-
version: '5.0.100'
87+
version: '5.0.102'
8888
- script: 'build.bat integrate-one $(esVersion) "readonly,writable,bool,xpack"'
8989
displayName: '$(esVersion) windows integration tests'
9090
- task: PublishTestResults@2
@@ -106,7 +106,7 @@ jobs:
106106
steps:
107107
- task: UseDotNet@2
108108
inputs:
109-
version: '5.0.100'
109+
version: '5.0.102'
110110
- script: './build.sh integrate-one $(esVersion) "readonly,writable"'
111111
displayName: '$(esVersion) linux integration tests'
112112
- task: PublishTestResults@2

0 commit comments

Comments
 (0)