Skip to content

Commit

Permalink
[Security] Fix the redis security issue CVE-2023-28858 and CVE-2023-2…
Browse files Browse the repository at this point in the history
…8859 (#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
  • Loading branch information
xumia authored Apr 11, 2023
1 parent 47e4b53 commit 4f6f979
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions azurepipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pr:
jobs:
- job: Build
pool:
vmImage: ubuntu-18.04
vmImage: ubuntu-20.04

variables:
DIFF_COVER_CHECK_THRESHOLD: 80
Expand All @@ -21,6 +21,11 @@ jobs:
- checkout: self
clean: true

# TODO: upgrade to python3
- task: UsePythonVersion@0
inputs:
versionSpec: '2.7'

- script: |
set -ex
./build.sh
Expand Down Expand Up @@ -58,7 +63,7 @@ jobs:
set -ex
# Install .NET CORE
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo apt-add-repository https://packages.microsoft.com/ubuntu/18.04/prod
sudo apt-add-repository https://packages.microsoft.com/ubuntu/20.04/prod
sudo apt-get update
sudo apt-get install -y dotnet-sdk-5.0
displayName: "Install .NET CORE"
Expand Down
2 changes: 1 addition & 1 deletion test/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
redis==2.10.5
redis==4.5.4
requests==2.25.0

0 comments on commit 4f6f979

Please sign in to comment.