File tree Expand file tree Collapse file tree
projects/regression_tests/.devcontainer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -432,3 +432,10 @@ vulnerabilities:
432432 purls :
433433 - " pkg:deb/ubuntu/linux-libc-dev@5.15.0-173.183?arch=amd64&distro=ubuntu-22.04"
434434 expired_at : 2026-09-16
435+ - id : CVE-2026-33186
436+ statement : " gRPC-Go has an authorization bypass via missing leading slash in :path"
437+ purls :
438+ - " pkg:golang/google.golang.org/grpc@v1.74.2"
439+ - " pkg:golang/google.golang.org/grpc@v1.78.0"
440+ - " pkg:golang/google.golang.org/grpc@v1.79.2"
441+ expired_at : 2026-09-20
Original file line number Diff line number Diff line change 1- allure 2.37 .0
1+ allure 2.38 .0
Original file line number Diff line number Diff line change 22
33set -e
44
5+ # install chrome
6+ mkdir -p /etc/apt/keyrings
7+ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo tee /etc/apt/keyrings/google.asc > /dev/null
8+ if [ " $TARGETARCH " = " arm64" ] || [ " $TARGETARCH " = " aarch64" ]; then
9+ sudo sh -c ' echo "deb [arch=arm64 signed-by=/etc/apt/keyrings/google.asc] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
10+ else
11+ sudo sh -c ' echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/google.asc] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
12+ fi
13+ sudo apt-get update
14+ sudo apt-get install -y google-chrome-stable
15+
516# clean up
617apt-get clean
718rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
You can’t perform that action at this time.
0 commit comments