Skip to content

Commit

Permalink
ci: fix rust toolchain and component version
Browse files Browse the repository at this point in the history
  • Loading branch information
burmecia committed Nov 28, 2024
1 parent 25d6050 commit a3c50b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release_wasm_fdw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Set up Rust
run: |
# install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --profile minimal --default-toolchain stable && \
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --profile minimal --default-toolchain 1.81.0 && \
rustup --version && \
rustc --version && \
cargo --version
Expand All @@ -38,7 +38,7 @@ jobs:
rustup target add wasm32-unknown-unknown
# install Wasm component
cargo install cargo-component --locked
cargo install cargo-component --version 0.13.2
- name: Build Wasm FDW
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_supabase_wrappers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: 1.81.0

- run: |
sudo apt remove -y postgres*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_wrappers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: 1.81.0

- run: |
sudo apt remove -y postgres*
Expand Down

0 comments on commit a3c50b9

Please sign in to comment.