diff options
| author | Fuwn <[email protected]> | 2025-01-14 08:12:38 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-01-14 08:18:44 +0000 |
| commit | 65f36b9395a7602477c2888aa05697e3e054a097 (patch) | |
| tree | 21b3c352593fb312a16be8ac199d1d991259331c | |
| parent | docs(cargo): add minimum rust version for lock file version 4 support (diff) | |
| download | september-65f36b9395a7602477c2888aa05697e3e054a097.tar.xz september-65f36b9395a7602477c2888aa05697e3e054a097.zip | |
ci: bump rust
| -rw-r--r-- | .github/workflows/check.yaml | 2 | ||||
| -rw-r--r-- | Earthfile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 6f59b6e..2ca16fb 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -20,7 +20,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.76.0 + toolchain: 1.78.0 components: rustfmt, clippy override: true - name: Check ✅ @@ -17,9 +17,9 @@ docker: SAVE IMAGE --push fuwn/september:$tag deps: - ARG rustc="1.76.0" + ARG rustc="1.78.0" - FROM clux/muslrust:$rustc + FROM clux/muslrust:$rustc-stable RUN curl "https://static.rust-lang.org/rustup/archive/${RUSTUP_VER}/${RUST_ARCH}/rustup-init" -o rustup-init \ && chmod +x rustup-init \ |