From de45269de827f86f9f2ad82192d8e10c8d094735 Mon Sep 17 00:00:00 2001 From: Ayesh Karunaratne Date: Thu, 22 Aug 2024 01:52:38 +0700 Subject: [PATCH] CI: gh-actions - add gh at apt-x64 step Related: GH-13296. ASAN builds use a different base image on GitHub Actions, which does not have the `gh` binary installed. This adds `gh` to the `apt install` list, to make sure it's available on all builds. --- .github/actions/apt-x64/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/apt-x64/action.yml b/.github/actions/apt-x64/action.yml index e4d8ff6994a39..06e1adad37a75 100644 --- a/.github/actions/apt-x64/action.yml +++ b/.github/actions/apt-x64/action.yml @@ -70,4 +70,5 @@ runs: libqdbm-dev \ libjpeg-dev \ libpng-dev \ - libfreetype6-dev + libfreetype6-dev \ + gh # to use in setup-caddy action