We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7c605d commit 2048abbCopy full SHA for 2048abb
.github/actions/setup/action.yml
@@ -17,6 +17,22 @@ runs:
17
echo $HOME
18
echo ${{ runner.os }}
19
20
+ - name: Cache apt packages on Linux
21
+ if: runner.os == 'Linux'
22
+ uses: actions/cache@v3
23
+ with:
24
+ path: /var/cache/apt
25
+ key: ${{ runner.os }}-apt-cache-${{ hashFiles('/var/lib/apt/lists/*') }}
26
+ restore-keys: |
27
+ ${{ runner.os }}-apt-cache-
28
+
29
+ - name: Install protobuf-compiler on Linux
30
31
+ shell: bash
32
+ run: |
33
+ sudo apt-get update
34
+ sudo apt-get install -y protobuf-compiler
35
36
- uses: dtolnay/rust-toolchain@stable
37
with:
38
toolchain: stable
0 commit comments