From 74affb841514348b48df6d5a531dc35b51d1ca1a Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Thu, 15 Feb 2024 14:34:29 +0100 Subject: [PATCH] Bump rustc to `stable` for Kotlin CI Due to: ``` error: package `clap v4.5.0` cannot be built because it requires rustc 1.74 or newer, while the currently active rustc version is 1.73.0 ``` --- .github/workflows/kotlin.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/kotlin.yml b/.github/workflows/kotlin.yml index 47e51b5d7..a1711ba49 100644 --- a/.github/workflows/kotlin.yml +++ b/.github/workflows/kotlin.yml @@ -20,8 +20,8 @@ jobs: distribution: temurin java-version: 11 - - name: Set default Rust version to 1.73.0 - run: rustup default 1.73.0 + - name: Set default Rust version to stable + run: rustup default stable - name: Show default version of NDK run: echo $ANDROID_NDK_ROOT