Update CI to use latest Rust version for type inference compatibility

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Leopere 2026-02-10 12:32:58 -05:00
parent eb1b01687e
commit 438e701b99
Signed by: colin
SSH Key Fingerprint: SHA256:nRPCQTeMFLdGytxRQmPVK9VXY3/ePKQ5lGRyJhT5DY8
1 changed files with 6 additions and 6 deletions

View File

@ -16,7 +16,7 @@ steps:
# Run Tests
test:
name: test
image: rust:1.75-bookworm
image: rust:latest
commands:
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
@ -34,7 +34,7 @@ steps:
# Build Linux x86_64 release binary
build-linux-x86_64:
name: build-linux-x86_64
image: rust:1.75-bookworm
image: rust:latest
depends_on: [test]
commands:
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
@ -54,7 +54,7 @@ steps:
# Build Linux aarch64 release binary (cross-compile)
build-linux-aarch64:
name: build-linux-aarch64
image: rust:1.75-bookworm
image: rust:latest
depends_on: [test]
failure: ignore
commands:
@ -81,7 +81,7 @@ steps:
# Cargo audit for known vulnerabilities
cargo-audit:
name: cargo-audit
image: rust:1.75-bookworm
image: rust:latest
commands:
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
@ -128,7 +128,7 @@ steps:
# Clippy linting
clippy:
name: clippy
image: rust:1.75-bookworm
image: rust:latest
commands:
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf
@ -142,7 +142,7 @@ steps:
# Format check
fmt-check:
name: fmt-check
image: rust:1.75-bookworm
image: rust:latest
commands:
- echo "nameserver 1.1.1.1" > /etc/resolv.conf
- echo "nameserver 1.0.0.1" >> /etc/resolv.conf