From cb57131f8f6c0ded32d42dac0a09b89a3e29d1a7 Mon Sep 17 00:00:00 2001 From: aboyko Date: Sun, 28 Apr 2024 14:19:50 -0400 Subject: [PATCH] [GHA] Akamai cache purging adoption for linux runner - install and uninstall golang runtime --- .github/actions/akamai-purge-osx/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/akamai-purge-osx/action.yml b/.github/actions/akamai-purge-osx/action.yml index 537ba89f9..a5eac2045 100644 --- a/.github/actions/akamai-purge-osx/action.yml +++ b/.github/actions/akamai-purge-osx/action.yml @@ -15,6 +15,7 @@ runs: shell: bash run: | echo -e "${EDGERC}" > ~/.edgerc + apt-get install golang wget -O akamai https://github.com/akamai/cli/releases/download/v1.5.6/akamai-v1.5.6-linuxamd64 chmod +x akamai ./akamai install purge @@ -59,3 +60,4 @@ runs: rm -f ~/.edgerc ./akamai uninstall purge rm -f ./akamai + apt-get remove golang