Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 7 additions & 0 deletions src/common/.trivyignore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -432,3 +432,10 @@ vulnerabilities:
purls:
- "pkg:deb/ubuntu/linux-libc-dev@5.15.0-173.183?arch=amd64&distro=ubuntu-22.04"
expired_at: 2026-09-16
- id: CVE-2026-33186
statement: "gRPC-Go has an authorization bypass via missing leading slash in :path"
purls:
- "pkg:golang/google.golang.org/grpc@v1.74.2"
- "pkg:golang/google.golang.org/grpc@v1.78.0"
- "pkg:golang/google.golang.org/grpc@v1.79.2"
expired_at: 2026-09-20
2 changes: 1 addition & 1 deletion src/projects/regression_tests/.devcontainer/.tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
allure 2.37.0
allure 2.38.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

set -e

# install chrome
mkdir -p /etc/apt/keyrings
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo tee /etc/apt/keyrings/google.asc >/dev/null
if [ "$TARGETARCH" = "arm64" ] || [ "$TARGETARCH" = "aarch64" ]; then
Comment thread
anthony-nhs marked this conversation as resolved.
Outdated
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'
else
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'
Comment thread
anthony-nhs marked this conversation as resolved.
Outdated
fi
sudo apt-get update
sudo apt-get install -y google-chrome-stable
Comment thread
anthony-nhs marked this conversation as resolved.
Outdated

# clean up
apt-get clean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Loading