Skip to content

Commit 68081b2

Browse files
authored
chore: update rust to 1.91 (#2082)
chore: update rust to 1.91
1 parent f2b7199 commit 68081b2

File tree

10 files changed

+740
-413
lines changed

10 files changed

+740
-413
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ commands:
294294
jobs:
295295
checks:
296296
docker:
297-
- image: cimg/rust:1.89 # RUST_VER
297+
- image: cimg/rust:1.91 # RUST_VER
298298
auth:
299299
username: $DOCKER_USER
300300
password: $DOCKER_PASS
@@ -314,7 +314,7 @@ jobs:
314314

315315
build-and-test-mysql:
316316
docker:
317-
- image: cimg/rust:1.89 # RUST_VER
317+
- image: cimg/rust:1.91 # RUST_VER
318318
auth:
319319
username: $DOCKER_USER
320320
password: $DOCKER_PASS
@@ -360,7 +360,7 @@ jobs:
360360

361361
build-and-test-postgres:
362362
docker:
363-
- image: cimg/rust:1.89 # RUST_VER
363+
- image: cimg/rust:1.91 # RUST_VER
364364
auth:
365365
username: $DOCKER_USER
366366
password: $DOCKER_PASS
@@ -406,7 +406,7 @@ jobs:
406406

407407
build-and-test-spanner:
408408
docker:
409-
- image: cimg/rust:1.89 # RUST_VER
409+
- image: cimg/rust:1.91 # RUST_VER
410410
auth:
411411
username: $DOCKER_USER
412412
password: $DOCKER_PASS
@@ -451,7 +451,7 @@ jobs:
451451

452452
build-mysql-image:
453453
docker:
454-
- image: cimg/rust:1.89 # RUST_VER
454+
- image: cimg/rust:1.91 # RUST_VER
455455
auth:
456456
username: $DOCKER_USER
457457
password: $DOCKER_PASS
@@ -490,7 +490,7 @@ jobs:
490490
- /home/circleci/cache
491491
build-postgres-image:
492492
docker:
493-
- image: cimg/rust:1.89 # RUST_VER
493+
- image: cimg/rust:1.91 # RUST_VER
494494
auth:
495495
username: $DOCKER_USER
496496
password: $DOCKER_PASS
@@ -529,7 +529,7 @@ jobs:
529529
- /home/circleci/cache
530530
build-spanner-image:
531531
docker:
532-
- image: cimg/rust:1.89 # RUST_VER
532+
- image: cimg/rust:1.91 # RUST_VER
533533
auth:
534534
username: $DOCKER_USER
535535
password: $DOCKER_PASS

.github/actions/setup-rust/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
rust-version:
66
description: "Rust version to install"
77
required: false
8-
default: "1.89" # RUST_VER
8+
default: "1.91" # RUST_VER
99
workspace-path:
1010
description: "The directory path to store test results"
1111
required: false

.github/workflows/mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
workflow_dispatch: {}
1212

1313
env:
14-
RUST_VERSION: "1.89" # RUST_VER
14+
RUST_VERSION: "1.91" # RUST_VER
1515
PYTHON_VERSION: "3.12" # PY_VER
1616

1717
jobs:

.github/workflows/postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
workflow_dispatch: {}
1212

1313
env:
14-
RUST_VERSION: "1.89"
14+
RUST_VERSION: "1.91"
1515
PYTHON_VERSION: "3.12"
1616

1717
jobs:

.github/workflows/spanner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
workflow_dispatch: {}
1212

1313
env:
14-
RUST_VERSION: "1.89" # RUST_VER
14+
RUST_VERSION: "1.91" # RUST_VER
1515
PYTHON_VERSION: "3.12" # PY_VER
1616

1717
jobs:

0 commit comments

Comments
 (0)