ci: update to Rust 1.77.0

This commit is contained in:
link2xt
2024-03-22 18:45:18 +00:00
parent 5f5b272726
commit 71c2383cbe
2 changed files with 5 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ jobs:
name: Lint Rust
runs-on: ubuntu-latest
env:
RUSTUP_TOOLCHAIN: 1.76.0
RUSTUP_TOOLCHAIN: 1.77.0
steps:
- uses: actions/checkout@v4
with:
@@ -83,11 +83,11 @@ jobs:
matrix:
include:
- os: ubuntu-latest
rust: 1.76.0
rust: 1.77.0
- os: windows-latest
rust: 1.76.0
rust: 1.77.0
- os: macos-latest
rust: 1.76.0
rust: 1.77.0
# Minimum Supported Rust Version = 1.70.0
- os: ubuntu-latest

View File

@@ -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.76.0
RUST_VERSION=1.77.0
ARCH="$(uname -m)"
test -f "/lib/libc.musl-$ARCH.so.1" && LIBC=musl || LIBC=gnu