diff options
-rw-r--r-- | .appveyor.yml | 2 | ||||
-rw-r--r-- | .travis.yml | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index e9dd60b31..ce2419066 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -303,7 +303,7 @@ install: Invoke-WebRequest -Uri "https://win.rustup.rs" ` -OutFile "$env:TEMP\rustup-init.exe" Exec -NoNewLines { - & "$env:TEMP\rustup-init.exe" -y --default-toolchain 1.30.0 + & "$env:TEMP\rustup-init.exe" -y --default-toolchain 1.31.1 } Delete-Tree @( "$env:RUSTUP_HOME\downloads", diff --git a/.travis.yml b/.travis.yml index b946708cb..50fd8c8ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,9 +32,9 @@ install: # Install Rust. # TODO(ry) Include rustc in third_party. # https://github.com/denoland/deno/issues/386 - if [ ! $(rustc --version | grep 1.30.0) ]; then - curl -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.30.0 - rustup default 1.30.0 + if [ ! $(rustc --version | grep 1.31.1) ]; then + curl -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.31.1 + rustup default 1.31.1 fi rustc --version cargo --version |