Skip to content

Commit b77b34d

Browse files
haasonsaasclaude
andcommitted
fix: revert to stable Rust versions in CI and Docker
- Revert Rust toolchain from 1.80 to stable in workflow - Revert Docker base image to rust:alpine for latest stable version - Version 1.80 may not be available in CI environments 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 0e5fdcf commit b77b34d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
uses: actions/checkout@v4
102102

103103
- name: Install Rust
104-
uses: dtolnay/rust-toolchain@1.80
104+
uses: dtolnay/rust-toolchain@stable
105105
with:
106106
targets: ${{ matrix.target }}
107107

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM rust:1.80-alpine AS builder
2+
FROM rust:alpine AS builder
33

44
RUN apk add --no-cache musl-dev
55

0 commit comments

Comments
 (0)