Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Security] Fix the redis security issue CVE-2023-28858 and CVE-2023-28859 #139

Merged
merged 4 commits into from
Apr 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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