Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ commands:
jobs:
checks:
docker:
- image: cimg/rust:1.89 # RUST_VER
- image: cimg/rust:1.91 # RUST_VER
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand All @@ -314,7 +314,7 @@ jobs:

build-and-test-mysql:
docker:
- image: cimg/rust:1.89 # RUST_VER
- image: cimg/rust:1.91 # RUST_VER
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:

build-and-test-postgres:
docker:
- image: cimg/rust:1.89 # RUST_VER
- image: cimg/rust:1.91 # RUST_VER
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down Expand Up @@ -406,7 +406,7 @@ jobs:

build-and-test-spanner:
docker:
- image: cimg/rust:1.89 # RUST_VER
- image: cimg/rust:1.91 # RUST_VER
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down Expand Up @@ -451,7 +451,7 @@ jobs:

build-mysql-image:
docker:
- image: cimg/rust:1.89 # RUST_VER
- image: cimg/rust:1.91 # RUST_VER
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down Expand Up @@ -490,7 +490,7 @@ jobs:
- /home/circleci/cache
build-postgres-image:
docker:
- image: cimg/rust:1.89 # RUST_VER
- image: cimg/rust:1.91 # RUST_VER
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down Expand Up @@ -529,7 +529,7 @@ jobs:
- /home/circleci/cache
build-spanner-image:
docker:
- image: cimg/rust:1.89 # RUST_VER
- image: cimg/rust:1.91 # RUST_VER
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
rust-version:
description: "Rust version to install"
required: false
default: "1.89" # RUST_VER
default: "1.91" # RUST_VER
workspace-path:
description: "The directory path to store test results"
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
workflow_dispatch: {}

env:
RUST_VERSION: "1.89" # RUST_VER
RUST_VERSION: "1.91" # RUST_VER
PYTHON_VERSION: "3.12" # PY_VER

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
workflow_dispatch: {}

env:
RUST_VERSION: "1.89"
RUST_VERSION: "1.91"
PYTHON_VERSION: "3.12"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
workflow_dispatch: {}

env:
RUST_VERSION: "1.89" # RUST_VER
RUST_VERSION: "1.91" # RUST_VER
PYTHON_VERSION: "3.12" # PY_VER

jobs:
Expand Down
Loading