Skip to content

Commit

Permalink
ci: change default rust toolchain from 1.60.0 to 1.67.0
Browse files Browse the repository at this point in the history
  • Loading branch information
da1suk8 committed Dec 13, 2023
1 parent af3a5c8 commit c7f7fa8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/builds_and_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.60.0
toolchain: 1.67.0
target: wasm32-unknown-unknown
profile: minimal
override: true
Expand All @@ -19,7 +19,7 @@ jobs:
uses: actions/cache@v3
with:
path: ~/.cargo
key: cargocache-v2-libwasmvm_sanity-rust:1.60.0-${{ hashFiles('Cargo.lock') }}
key: cargocache-v2-libwasmvm_sanity-rust:1.67.0-${{ hashFiles('Cargo.lock') }}
- name: Install shellcheck
run: sudo apt install shellcheck
- name: Show version information
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.60.0
toolchain: 1.67.0
target: x86_64-unknown-linux-gnu
profile: minimal
override: true
Expand All @@ -143,7 +143,7 @@ jobs:
uses: actions/cache@v3
with:
path: ~/.cargo
key: cargocache-v2-build_shared_library-rust:1.60.0-${{ hashFiles('Cargo.lock') }}
key: cargocache-v2-build_shared_library-rust:1.67.0-${{ hashFiles('Cargo.lock') }}
- name: Show version information
run: rustc --version; cargo --version; rustup --version
- name: Create release build of libwasmvm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_to_git.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.60.0
toolchain: 1.67.0
profile: minimal
override: true
- name: Checkout
Expand Down

0 comments on commit c7f7fa8

Please sign in to comment.