From 068726453ef9c7e4dbf25badc55522c37311bb52 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 9 Feb 2025 01:52:48 +0000 Subject: [PATCH] ci: upgrade Rust from 1.84.0 to 1.84.1 --- .github/workflows/ci.yml | 8 ++++---- scripts/coredeps/install-rust.sh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a3b21399..eac6f45f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: name: Lint Rust runs-on: ubuntu-latest env: - RUSTUP_TOOLCHAIN: 1.84.0 + RUSTUP_TOOLCHAIN: 1.84.1 steps: - uses: actions/checkout@v4 with: @@ -97,11 +97,11 @@ jobs: matrix: include: - os: ubuntu-latest - rust: 1.84.0 + rust: 1.84.1 - os: windows-latest - rust: 1.84.0 + rust: 1.84.1 - os: macos-latest - rust: 1.84.0 + rust: 1.84.1 # Minimum Supported Rust Version = 1.81.0 - os: ubuntu-latest diff --git a/scripts/coredeps/install-rust.sh b/scripts/coredeps/install-rust.sh index 844b8442a..7e3c75872 100755 --- a/scripts/coredeps/install-rust.sh +++ b/scripts/coredeps/install-rust.sh @@ -7,7 +7,7 @@ set -euo pipefail # # Avoid using rustup here as it depends on reading /proc/self/exe and # has problems running under QEMU. -RUST_VERSION=1.84.0 +RUST_VERSION=1.84.1 ARCH="$(uname -m)" test -f "/lib/libc.musl-$ARCH.so.1" && LIBC=musl || LIBC=gnu