Skip to content

Commit d02f6ab

Browse files
committed
install chrome
1 parent 57ea9fa commit d02f6ab

3 files changed

Lines changed: 19 additions & 1 deletion

File tree

src/common/.trivyignore.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
allure 2.37.0
1+
allure 2.38.0

src/projects/regression_tests/.devcontainer/scripts/root_install.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
set -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
617
apt-get clean
718
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

0 commit comments

Comments
 (0)