From 1bff9bc95fd7cec5ac2c9a11cc80a56d5a8c41cd Mon Sep 17 00:00:00 2001 From: Takahiro Ueda Date: Sat, 8 Aug 2026 13:35:56 +0900 Subject: [PATCH] ci: ensure APT package database is updated --- .github/actions/setup-build/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-build/action.yml b/.github/actions/setup-build/action.yml index bc1b79af6..b487f140e 100644 --- a/.github/actions/setup-build/action.yml +++ b/.github/actions/setup-build/action.yml @@ -302,8 +302,12 @@ runs: ${{ steps.setup.outputs.valgrind == 'true' && 'valgrind' || '' }} # Include the runner image version in the cache key to avoid using stale cache. # See: https://github.com/awalsh128/cache-apt-pkgs-action/issues/187 - version: ${{ steps.setup.outputs.image_key }}-1.0 + version: ${{ steps.setup.outputs.image_key }}-1.1 empty_packages_behavior: ignore + env: + # This avoids skipping running apt-fast update. + # See: https://github.com/awalsh128/cache-apt-pkgs-action/issues/166 + ACT: true # awalsh128/cache-apt-pkgs-action does not work for MPI. # See: https://github.com/awalsh128/cache-apt-pkgs-action/issues/57#issuecomment-1304062077