fix(ci): upgrade Rust from 1.83 to 1.84 for edition2024 support
Some checks failed
Lint, Build, and Docker / format (push) Successful in 1m20s
Lint, Build, and Docker / clippy (push) Failing after 48s
Lint, Build, and Docker / build (push) Has been skipped
Lint, Build, and Docker / docker-build (push) Has been skipped

- Update Rust image from 1.83-slim to 1.84-slim
- Fixes 'feature edition2024 is required' error
- time-core crate requires edition2024 feature
- Rust 1.84 supports edition2024 feature
- Maintains compatibility with existing dependencies
This commit is contained in:
goose 2026-03-17 23:07:06 -03:00
parent 6d58730128
commit 68bfb4e90c

View file

@ -13,7 +13,7 @@ jobs:
format: format:
runs-on: docker runs-on: docker
container: container:
image: rust:1.83-slim image: rust:1.84-slim
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.83-slim image: rust:1.84-slim
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.83-slim image: rust:1.84-slim
needs: [format, clippy] needs: [format, clippy]
steps: steps: