From 283b5e2257896a322f43b8afdd74dfbb89f3c884 Mon Sep 17 00:00:00 2001 From: Mikhail Babynichev Date: Tue, 18 Jun 2024 19:19:52 +0300 Subject: [PATCH] ci: lower the rust version --- .github/workflows/deploy.yml | 5 ++++- .github/workflows/pr_lint.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 90e6bf84..3c907413 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -48,7 +48,10 @@ jobs: - name: 🛠️ - Install Rust uses: moonrepo/setup-rust@v1 - with: { components: clippy } + with: { + components: clippy, + channel: '1.77.0' + } - name: 🛠️ - Install Deps run: npm install -g pnpm@^8 && pnpm install --frozen-lockfile diff --git a/.github/workflows/pr_lint.yml b/.github/workflows/pr_lint.yml index fd868c3b..ec83113c 100644 --- a/.github/workflows/pr_lint.yml +++ b/.github/workflows/pr_lint.yml @@ -22,7 +22,10 @@ jobs: - name: 🛠️ - Install Rust uses: moonrepo/setup-rust@v1 - with: { components: clippy } + with: { + components: clippy, + channel: '1.77.0' + } - name: Install Deps 🔧 run: |