From 42bd17be9455e134a5e2ade808ac19463a176890 Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Tue, 1 Aug 2023 13:59:27 -0400 Subject: [PATCH] apt update first --- .github/workflows/style-and-sp-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/style-and-sp-check.yml b/.github/workflows/style-and-sp-check.yml index 8f7c6ffd..51011071 100644 --- a/.github/workflows/style-and-sp-check.yml +++ b/.github/workflows/style-and-sp-check.yml @@ -17,8 +17,8 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - name: Install curl - run: apt-get install curl + - name: Install curl + run: apt-get update && apt-get install -y --no-install-recommends curl - name: Load 1Password secrets uses: 1password/load-secrets-action@v1