Skip to content

Commit 8f5e153

Browse files
committed
try not using different arch for chrome
1 parent 3270814 commit 8f5e153

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

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

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@ set -euo pipefail
55
# install chrome
66
mkdir -p /etc/apt/keyrings
77
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-
sh -c 'echo "deb [arch=arm64 signed-by=/etc/apt/keyrings/google.asc] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list'
10-
else
11-
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'
12-
fi
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'
139
apt-get update
1410
apt-get install -y google-chrome-stable
1511

0 commit comments

Comments
 (0)