Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Un-pin Rust from 1.77 back to stable #9724

Merged
merged 2 commits into from
May 20, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: yarn
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.77
toolchain: stable
components: rustfmt
# use `--frozen-lockfile` to fail immediately if the committed yarn.lock needs updates
# https://yarnpkg.com/lang/en/docs/cli/install/#toc-yarn-install-frozen-lockfile
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
node-version: ${{ matrix.node }}
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.77
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.os }}
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
node-version: ${{ matrix.node }}
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.77
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.os }}
Expand All @@ -139,7 +139,7 @@ jobs:
node-version: 20
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.77
toolchain: stable
targets: wasm32-unknown-unknown
- name: Install wasm-opt
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.77
toolchain: stable
target: ${{ matrix.target }}
- uses: bahmutov/npm-install@v1.8.35
- uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.77
toolchain: stable
profile: minimal
override: true
- uses: bahmutov/npm-install@v1.8.35
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.77
toolchain: stable
target: ${{ matrix.target }}
- name: Install cross compile toolchains
run: |
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.77
toolchain: stable
target: ${{ matrix.target }}
- uses: bahmutov/npm-install@v1.8.35
- name: Build native packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
node-version: 20
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.77
toolchain: stable
targets: wasm32-unknown-unknown
- name: Install wasm-opt
run: |
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.77
stable
Loading