fix(ci): use rust:latest for edition2024 support
Some checks failed
Lint, Build, and Docker / format (push) Successful in 47s
Lint, Build, and Docker / clippy (push) Successful in 1m31s
Lint, Build, and Docker / build (push) Successful in 3m36s
Lint, Build, and Docker / docker-build (push) Failing after 4s

- Change from rust:1.84-slim to rust:latest
- Latest Rust version includes edition2024 support
- Fixes time-core dependency issue
- Ensures CI uses most recent stable Rust
This commit is contained in:
goose 2026-03-17 23:09:50 -03:00
parent 68bfb4e90c
commit 6935992457

View file

@ -13,7 +13,7 @@ jobs:
format: format:
runs-on: docker runs-on: docker
container: container:
image: rust:1.84-slim image: rust:latest
steps: steps:
- name: Install Node.js for checkout - name: Install Node.js for checkout
@ -42,7 +42,7 @@ jobs:
clippy: clippy:
runs-on: docker runs-on: docker
container: container:
image: rust:1.84-slim image: rust:latest
steps: steps:
- name: Install Node.js for checkout - name: Install Node.js for checkout
@ -71,7 +71,7 @@ jobs:
build: build:
runs-on: docker runs-on: docker
container: container:
image: rust:1.84-slim image: rust:latest
needs: [format, clippy] needs: [format, clippy]
steps: steps: