From 60ca1042045c0c9e3e001c64575d381654ffcba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?p=C3=BDrus?= Date: Thu, 5 Jun 2025 14:44:46 +0200 Subject: [PATCH] preliminarily update the apt cache (#32) --- action.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index adc53c9..19941a4 100644 --- a/action.yaml +++ b/action.yaml @@ -25,8 +25,11 @@ runs: - name: Install python pip run: python3 -m pip install --upgrade pip shell: bash + - name: Update APT cache + run: sudo apt-get update + shell: bash - name: Erase MySQL package - run: sudo apt-get purge mysql-* || true + run: sudo apt-get purge -y mysql-* || true shell: bash # This is to avoid RabbitMQ to fail at startup because a wrong version of erlang was installed - name: Workaround for RabbitMQ