From 3dd90167bb42050fb5e9c5e69508c616b1bc55ae Mon Sep 17 00:00:00 2001 From: Thomas van Dam Date: Thu, 12 Sep 2024 12:01:06 +0200 Subject: [PATCH] fix(ci): pin Rust version to 1.80.1 Part-of: https://github.com/sedaprotocol/seda-chain/issues/359 --- .github/workflows/manual.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index cec99f2..3fae881 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -57,9 +57,11 @@ jobs: with: key: cache-v1 cache-on-failure: true - + - name: 🛠️ Setup Rust uses: dtolnay/rust-toolchain@stable + with: + toolchain: 1.80.1 - name: 📥 Install Dependencies run: | @@ -69,7 +71,7 @@ jobs: if: ${{ github.event.inputs.debug == 'true' }} run: | cargo xtask compile ${{ github.event.inputs.architecture }} --debug - + - name: 🔨 Build Library For ${{ github.event.inputs.architecture }} if: ${{ github.event.inputs.debug == 'false' }} run: | @@ -78,7 +80,7 @@ jobs: - name: 📝 Set Branch Name id: set_branch run: echo "FORMATTED_REF=${{ github.ref }}" | sed 's/\//-/g' >> $GITHUB_OUTPUT - + - name: 📤 Upload Artifacts uses: actions/upload-artifact@v4 with: