From 4a35dbd3ce6d07d4143331664b656f9f98f619cb Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Thu, 6 Jun 2024 18:53:19 +0100 Subject: [PATCH] Build: Fix ubuntu-24.04 CI builds by switching to apt-get Ref https://github.com/actions/runner-images/issues/10003. Cherry-picked from 85f5c56eecab1a567e31c5e3827eee55f242ee8e. --- .github/workflows/CI.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 5ac6eb377..c13310cae 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -152,7 +152,7 @@ jobs: node-version: 18.x - name: Install mozjs run: | - sudo apt-fast install -y libmozjs-102-dev + sudo apt-get install -y libmozjs-102-dev - run: npm ci - run: npm run build - name: Tests @@ -188,7 +188,7 @@ jobs: node-version: 18.x - name: Install mozjs run: | - sudo apt-fast install -y libmozjs-115-dev + sudo apt-get install -y libmozjs-115-dev - run: npm ci - run: npm run build - name: Tests