diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d936f2b7a..a6b8ed332 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.77.1 + RUSTUP_TOOLCHAIN: 1.78.0 steps: - uses: actions/checkout@v4 with: @@ -83,11 +83,11 @@ jobs: matrix: include: - os: ubuntu-latest - rust: 1.77.1 + rust: 1.78.0 - os: windows-latest - rust: 1.77.1 + rust: 1.78.0 - os: macos-latest - rust: 1.77.1 + rust: 1.78.0 # Minimum Supported Rust Version = 1.77.0 - os: ubuntu-latest diff --git a/scripts/coredeps/install-rust.sh b/scripts/coredeps/install-rust.sh index b6f232ed6..0acb9b227 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.77.1 +RUST_VERSION=1.78.0 ARCH="$(uname -m)" test -f "/lib/libc.musl-$ARCH.so.1" && LIBC=musl || LIBC=gnu