Skip to content

Commit

Permalink
ci: use rust v1.80
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Sep 7, 2024
1 parent 28ce155 commit 7de5e1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .fluentci/src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const test = async (
const ctr = dag
.pipeline(Job.test)
.container()
.from("rust:1.76-bullseye")
.from("rust:1.80-bullseye")
.withDirectory("/app", context, { exclude })
.withWorkdir("/app")
.withMountedCache("/app/target", dag.cacheVolume("target"))
Expand Down Expand Up @@ -50,7 +50,7 @@ export const build = (src = "."): Promise<string> => {
const ctr = dag
.pipeline(Job.build)
.container()
.from("rust:1.76-bullseye")
.from("rust:1.80-bullseye")
.withExec(["apt-get", "update"])
.withExec([
"apt-get",
Expand Down

0 comments on commit 7de5e1c

Please sign in to comment.