From 104078f15f30deb1a4087f82bc1fb5e27a77e3a6 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Tue, 1 Aug 2023 10:09:15 +0200 Subject: [PATCH] cargo install locked --- .github/workflows/ci.yml | 4 ++-- Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22c80df9..cabdfe32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: run: make build-release - name: Test Install - run: cargo install --path "." --force + run: cargo install --path "." --force --locked - name: Binary Size (unix) if: matrix.os != 'windows-latest' @@ -123,7 +123,7 @@ jobs: run: | make test-linux-musl - name: Test Install - run: cargo install --path "." --force + run: cargo install --path "." --force --locked build-linux-arm: runs-on: ubuntu-latest diff --git a/Makefile b/Makefile index 261a9fb8..029b6813 100644 --- a/Makefile +++ b/Makefile @@ -84,10 +84,10 @@ deny: cargo deny check install: - cargo install --path "." --offline + cargo install --path "." --offline --locked install-timing: - cargo install --features=timing --path "." --offline + cargo install --features=timing --path "." --offline --locked licenses: cargo bundle-licenses --format toml --output THIRDPARTY.toml