Skip to content

Commit 0e5fdcf

Browse files
haasonsaasclaude
andcommitted
fix: update Docker and Rust toolchain versions to resolve build failures
- Update docker/build-push-action from v5 to v6 - Update Rust version from 1.75 to 1.80 in Dockerfile - Update Rust toolchain action to use specific version 1.80 These changes should resolve the failing release builds on GitHub Actions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d3e3b30 commit 0e5fdcf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
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@stable
104+
uses: dtolnay/rust-toolchain@1.80
105105
with:
106106
targets: ${{ matrix.target }}
107107

@@ -170,7 +170,7 @@ jobs:
170170
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
171171

172172
- name: Build and push Docker image
173-
uses: docker/build-push-action@v5
173+
uses: docker/build-push-action@v6
174174
with:
175175
context: .
176176
platforms: linux/amd64,linux/arm64

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.75-alpine AS builder
2+
FROM rust:1.80-alpine AS builder
33

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

0 commit comments

Comments
 (0)