File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ jobs:
102
102
- uses : actions/checkout@v2
103
103
104
104
- name : Install dependencies (Linux)
105
- run : sudo apt-get install -y clang-format-12
105
+ run : sudo apt update -y && sudo apt install -y clang-format-12
106
106
107
107
- name : Format (clang-format)
108
108
run : |
@@ -118,7 +118,7 @@ jobs:
118
118
- uses : actions/checkout@v2
119
119
120
120
- name : Install dependencies (Linux)
121
- run : sudo apt-get install -y clang-tidy-12
121
+ run : sudo apt update -y && sudo apt install -y clang-tidy-12
122
122
123
123
- name : Bazel cache
124
124
uses :
PiotrSikora/[email protected]
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ jobs:
223
223
224
224
- name : Install dependencies (Linux)
225
225
if : ${{ matrix.deps != '' && startsWith(matrix.os, 'ubuntu') }}
226
- run : sudo apt-get install -y ${{ matrix.deps }}
226
+ run : sudo apt update -y && sudo apt install -y ${{ matrix.deps }}
227
227
228
228
- name : Activate Docker/QEMU
229
229
if : startsWith(matrix.run_under, 'docker')
You can’t perform that action at this time.
0 commit comments