From 2766e24007f20d4bc5b0d5ab5343f11611ed48c8 Mon Sep 17 00:00:00 2001 From: skbeh <60107333+skbeh@users.noreply.github.com> Date: Tue, 31 Jan 2023 07:11:00 -0400 Subject: [PATCH] ci: replace actions-rs/cargo with naive command (#162) This avoids node 12 warnings. Co-authored-by: Ylarod --- .github/workflows/ksud.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ksud.yml b/.github/workflows/ksud.yml index 49aaa7cc..fbce856e 100644 --- a/.github/workflows/ksud.yml +++ b/.github/workflows/ksud.yml @@ -29,11 +29,7 @@ jobs: restore-keys: ${{ runner.os }}-cargo- - name: Build ksud - uses: actions-rs/cargo@v1 - with: - use-cross: true - command: build - args: --target ${{ inputs.target }} --release --manifest-path ./userspace/ksud/Cargo.toml + run: cross build --target ${{ inputs.target }} --release --manifest-path ./userspace/ksud/Cargo.toml - name: Upload ksud artifact uses: actions/upload-artifact@v3