Skip to content

Commit

Permalink
Do apt update before apt install (#197806)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdima authored Nov 9, 2023
1 parent cb9c486 commit 4e1c7e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/monaco-editor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4e1c7e5

Please sign in to comment.