diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e934fa94..c35afef0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,7 @@ jobs: - name: Setup rustup run: | + rustup set auto-self-update disable rustup install ${{ env.RUST_VERSION }} rustup default ${{ env.RUST_VERSION }} @@ -68,6 +69,7 @@ jobs: - uses: actions/checkout@v4 - name: Setup rustup run: | + rustup set auto-self-update disable rustup install ${{ env.RUST_VERSION }} rustup default ${{ env.RUST_VERSION }} rustup target add aarch64-unknown-linux-gnu @@ -96,6 +98,7 @@ jobs: run: | rustup-init -y source "$HOME/.cargo/env" + rustup set auto-self-update disable rustup component add llvm-tools - name: Setup grcov diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f20312d..d1bd2227 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -64,7 +64,7 @@ if(NOT Corrosion_FOUND) FetchContent_Declare( Corrosion GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git - GIT_TAG 64289b1d79d6d19cd2e241db515381a086bb8407 # v0.5 + GIT_TAG b1fab721655c5c4b1b08a083d3cd29f163af75d0 # v0.5.1 FIND_PACKAGE_ARGS ) FetchContent_MakeAvailable(Corrosion)