mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
Do apt update before apt install (#197806)
This commit is contained in:
4
.github/workflows/monaco-editor.yml
vendored
4
.github/workflows/monaco-editor.yml
vendored
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user