Skip to content

Commit

Permalink
chore(deps): Update Rust Stable to v1.82 (#5788)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 23, 2024
1 parent f35d8e0 commit 18f8d4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.81.0" # STABLE
toolchain: "1.82" # STABLE
- uses: Swatinem/rust-cache@v2
- name: UI Tests
run: make test-ui-${{ matrix.features }}
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.81.0" # STABLE
toolchain: "1.82" # STABLE
- uses: Swatinem/rust-cache@v2
- name: Check documentation
env:
Expand All @@ -222,7 +222,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.81.0" # STABLE
toolchain: "1.82" # STABLE
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: Check formatting
Expand All @@ -236,7 +236,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.81.0" # STABLE
toolchain: "1.82" # STABLE
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Lint (ultra-minimal)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ifneq (${TOOLCHAIN_TARGET},)
ARGS+=--target ${TOOLCHAIN_TARGET}
endif

STABLE?=1.81.0
STABLE?=1.82

_FEATURES = minimal default wasm full debug release
_FEATURES_minimal = --no-default-features --features "std"
Expand Down
2 changes: 1 addition & 1 deletion tests/derive_ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#![cfg(feature = "unstable-derive-ui-tests")]

#[cfg(feature = "derive")]
#[rustversion::attr(not(stable(1.81.0)), ignore)] // STABLE
#[rustversion::attr(not(stable(1.82)), ignore)] // STABLE
#[test]
fn ui() {
let t = trybuild::TestCases::new();
Expand Down

0 comments on commit 18f8d4c

Please sign in to comment.