Skip to content

Commit 4f6f979

Browse files
authored
[Security] Fix the redis security issue CVE-2023-28858 and CVE-2023-28859 (#139)
[Security] Fix the redis security issue CVE-2023-28858 and CVE-2023-28859 Upgrade the redis version from 2.10.5 to 4.5.4
1 parent 47e4b53 commit 4f6f979

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

azurepipeline.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pr:
1010
jobs:
1111
- job: Build
1212
pool:
13-
vmImage: ubuntu-18.04
13+
vmImage: ubuntu-20.04
1414

1515
variables:
1616
DIFF_COVER_CHECK_THRESHOLD: 80
@@ -21,6 +21,11 @@ jobs:
2121
- checkout: self
2222
clean: true
2323

24+
# TODO: upgrade to python3
25+
- task: UsePythonVersion@0
26+
inputs:
27+
versionSpec: '2.7'
28+
2429
- script: |
2530
set -ex
2631
./build.sh
@@ -58,7 +63,7 @@ jobs:
5863
set -ex
5964
# Install .NET CORE
6065
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
61-
sudo apt-add-repository https://packages.microsoft.com/ubuntu/18.04/prod
66+
sudo apt-add-repository https://packages.microsoft.com/ubuntu/20.04/prod
6267
sudo apt-get update
6368
sudo apt-get install -y dotnet-sdk-5.0
6469
displayName: "Install .NET CORE"

test/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
redis==2.10.5
1+
redis==4.5.4
22
requests==2.25.0

0 commit comments

Comments
 (0)