From 0990245218537156969bebb68ae8cc7b19cf4cde Mon Sep 17 00:00:00 2001 From: Maaz Ahmed <maaz.a@subcom.tech> Date: Fri, 15 Dec 2023 06:56:11 +0000 Subject: [PATCH] ci: use latest rust images --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ebb55e5..9112872 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,13 +5,13 @@ stages: build: stage: build - image: rust + image: rust:latest script: - cargo build rustdoc: stage: build - image: rust + image: rust:latest script: - cargo doc artifacts: @@ -20,13 +20,13 @@ rustdoc: unit-test: stage: test - image: rust + image: rust:latest script: - cargo test --lib lint-test: stage: test - image: rust + image: rust:latest script: - cargo clippy -- GitLab