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 48ce3b9 commit bd8dd09Copy full SHA for bd8dd09
.github/workflows/poc-agent-build.yml
@@ -14,6 +14,14 @@ jobs:
14
- name: Checkout repository
15
uses: actions/checkout@v2
16
17
+ - name: Cache cargo
18
+ uses: actions/cache@v4
19
+ with:
20
+ path: ~/.cargo
21
+ key: ${{ runner.arch }}-${{ runner.os }}-cargo-cache-${{ hashFiles('**/Cargo.lock') }}
22
+ restore-keys: |
23
+ ${{ runner.arch }}-${{ runner.os }}-cargo-cache-
24
+
25
- name: Download rustup-init
26
run: curl.exe --output rustup-init.exe --url https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe
27
0 commit comments