From c70d34f96493808f8b2d61f0be357ef62c94bf40 Mon Sep 17 00:00:00 2001 From: Marc Prud'hommeaux Date: Fri, 27 Feb 2026 15:36:03 -0500 Subject: [PATCH] Run apt-get update before installing swiftly --- setup-skip/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup-skip/action.yml b/setup-skip/action.yml index a0f9a91..dd8d24e 100644 --- a/setup-skip/action.yml +++ b/setup-skip/action.yml @@ -82,6 +82,8 @@ runs: shell: bash run: | if [ ${RUNNER_OS} == 'Linux' ]; then + # needed for https://github.com/swiftlang/swiftly/pull/509 + sudo apt-get update # needed to be able to install swiftly toolchains sudo apt-get -y install libcurl4-openssl-dev fi