From 162599934c57d7142b6ccbb4405cf269058700ef Mon Sep 17 00:00:00 2001 From: Dave Tucker Date: Mon, 31 Jul 2023 18:21:11 +0100 Subject: [PATCH] ci: Use taiki-e/install-action This should binstall cargo-generate to save CI time Signed-off-by: Dave Tucker --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c1201b..a0917fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,11 +55,10 @@ jobs: - uses: Swatinem/rust-cache@v2 - - name: Install bpf-linker - run: cargo install bpf-linker - - - name: Install Cargo Generate - run: cargo install cargo-generate + - name: Install deps + uses: taiki-e/install-action@v2 + with: + tool: bpf-linker,cargo-generate - name: Run tests run: ./test.sh ${{ github.workspace }} ${{ matrix.program }}