Do apt update before apt install (#197806)

This commit is contained in:
Alexandru Dima
2023-11-09 09:59:07 +01:00
committed by GitHub
parent cb9c48673f
commit 4e1c7e5766

View File

@@ -47,7 +47,9 @@ jobs:
restore-keys: ${{ runner.os }}-yarnCacheDir-
- name: Install libkrb5-dev
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
run: sudo apt install -y libkrb5-dev
run: |
sudo apt update
sudo apt install -y libkrb5-dev
- name: Execute yarn
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
env: