From 4632d58bb801b2c3a73c13f3cbb07c8c18e4a515 Mon Sep 17 00:00:00 2001 From: Sanne Raymaekers Date: Thu, 15 Jul 2021 10:36:15 +0200 Subject: [PATCH] npm-update: Fix install step --- .github/workflows/npm-update.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm-update.yml b/.github/workflows/npm-update.yml index 911e8596..357993b3 100644 --- a/.github/workflows/npm-update.yml +++ b/.github/workflows/npm-update.yml @@ -8,7 +8,9 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Set up dependencies - run: sudo apt-get install -y npm make + run: | + sudo apt update + sudo apt install -y npm make - name: Set up configuration and secrets run: |