Skip to content

Commit 7c48196

Browse files
authored
Merge pull request #227 from rust-cli/renovate/stable-1.x
chore(deps): Update dependency STABLE to v1.82.0
2 parents 9ce373f + a28405f commit 7c48196

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
- name: Install Rust
106106
uses: dtolnay/rust-toolchain@stable
107107
with:
108-
toolchain: "1.80" # STABLE
108+
toolchain: "1.82.0" # STABLE
109109
- uses: Swatinem/rust-cache@v2
110110
- name: Check documentation
111111
env:
@@ -120,7 +120,7 @@ jobs:
120120
- name: Install Rust
121121
uses: dtolnay/rust-toolchain@stable
122122
with:
123-
toolchain: "1.80" # STABLE
123+
toolchain: "1.82.0" # STABLE
124124
components: rustfmt
125125
- uses: Swatinem/rust-cache@v2
126126
- name: Check formatting
@@ -136,7 +136,7 @@ jobs:
136136
- name: Install Rust
137137
uses: dtolnay/rust-toolchain@stable
138138
with:
139-
toolchain: "1.80" # STABLE
139+
toolchain: "1.82.0" # STABLE
140140
components: clippy
141141
- uses: Swatinem/rust-cache@v2
142142
- name: Install SARIF tools

crates/anstyle-parse/tests/testsuite.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ advance!(
244244
fn gen_exceed_max_buffer_size() -> (Vec<u8>, Dispatcher) {
245245
static NUM_BYTES: usize = MAX_OSC_RAW + 100;
246246
static INPUT_START: &[u8] = &[0x1b, b']', b'5', b'2', b';', b's'];
247-
static INPUT_END: &[u8] = &[b'\x07'];
247+
static INPUT_END: &[u8] = b"\x07";
248248
let mut input = INPUT_START.to_vec();
249249
input.resize(INPUT_START.len() + NUM_BYTES, b'a');
250250
input.extend(INPUT_END);

0 commit comments

Comments
 (0)