Skip to content

Commit 7056376

Browse files
authored
Chore: [AEA-0000] - install chrome (#57)
## Summary - Routine Change ### Details - add chrome to regression tests - update allure
1 parent 57ea9fa commit 7056376

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

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

src/projects/eps-storage-terraform/.trivyignore.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,8 @@ vulnerabilities:
110110
purls:
111111
- "pkg:golang/go.opentelemetry.io/otel/sdk@v1.38.0"
112112
expired_at: 2026-09-10
113+
- id: CVE-2026-33186
114+
statement: "gRPC-Go has an authorization bypass via missing leading slash in :path"
115+
purls:
116+
- "pkg:golang/google.golang.org/grpc@v1.69.4"
117+
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: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
#!/usr/bin/env bash
22

3-
set -e
3+
set -euo pipefail
4+
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+
sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/google.asc] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list'
9+
apt-get update
10+
apt-get install -y google-chrome-stable
411

512
# clean up
613
apt-get clean

0 commit comments

Comments
 (0)