From 0ceab41b3909969d49ee4e84036e7b6e26d5f85a Mon Sep 17 00:00:00 2001 From: Skgland Date: Fri, 20 Feb 2026 22:57:44 +0100 Subject: [PATCH] fix warning in CI about using apt in a script --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8c83118..7ef910e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -180,7 +180,7 @@ jobs: version=`yq -ptoml -oj -r '.package[] | select(.name == "iai-callgrind") | .version' Cargo.lock` echo installing iai-callgrind "$version" cargo install iai-callgrind-runner --force --version "$version" - sudo apt install valgrind -y + sudo apt-get install valgrind -y - name: Test and report run: | -- 2.54.0