Skip to content

Commit e3e8e78

Browse files
chore(ci): upgrade Rust to v1.89
1 parent a7e9b7a commit e3e8e78

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,40 +15,40 @@ jobs:
1515
- uses: EmbarkStudios/cargo-deny-action@v2
1616

1717
fmt:
18-
name: rustfmt / 1.88.0
18+
name: rustfmt / 1.89.0
1919
runs-on: ubuntu-latest
2020

2121
steps:
2222
- uses: actions/checkout@v4
2323

24-
- uses: dtolnay/rust-toolchain@1.88.0
24+
- uses: dtolnay/rust-toolchain@1.89.0
2525
with:
2626
components: rustfmt
2727

2828
- name: Rust rustfmt
2929
run: cargo fmt --all -- --check
3030

3131
clippy:
32-
name: clippy / 1.88.0
32+
name: clippy / 1.89.0
3333
runs-on: ubuntu-latest
3434

3535
steps:
3636
- uses: actions/checkout@v4
3737

38-
- uses: dtolnay/rust-toolchain@1.88.0
38+
- uses: dtolnay/rust-toolchain@1.89.0
3939
with:
4040
components: clippy
4141

4242
- name: Run clippy
4343
run: cargo clippy --all-features -- -D warnings
4444

4545
cargo-hack:
46-
name: cargo-hack / 1.88.0
46+
name: cargo-hack / 1.89.0
4747
runs-on: ubuntu-latest
4848
steps:
4949
- uses: actions/checkout@v4
5050

51-
- uses: dtolnay/rust-toolchain@1.88.0
51+
- uses: dtolnay/rust-toolchain@1.89.0
5252

5353
- uses: taiki-e/install-action@v2
5454
with:

.gitlab-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ stages:
33

44
rust:deny:
55
stage: test
6-
image: rust:1.88-alpine3.22
6+
image: rust:1.89-alpine3.22
77
before_script:
88
- apk add cargo-deny
99
script:
1010
- cargo deny check
1111

1212
rust:fmt:
1313
stage: test
14-
image: rust:1.88-alpine3.22
14+
image: rust:1.89-alpine3.22
1515
before_script:
1616
- rustup component add rustfmt
1717
script:
1818
- cargo fmt -- --check
1919

2020
rust:clippy:
2121
stage: test
22-
image: rust:1.88-alpine3.20
22+
image: rust:1.89-alpine3.20
2323
before_script:
2424
- apk add build-base musl-dev linux-headers cmake perl go
2525
- rustup component add clippy
@@ -28,7 +28,7 @@ rust:clippy:
2828

2929
rust:hack:
3030
stage: test
31-
image: rust:1.88-alpine3.20
31+
image: rust:1.89-alpine3.20
3232
before_script:
3333
- apk add build-base musl-dev linux-headers cmake perl go
3434
- cargo install --locked [email protected]
@@ -37,7 +37,7 @@ rust:hack:
3737

3838
rust:test:
3939
stage: test
40-
image: rust:1.88-alpine3.22
40+
image: rust:1.89-alpine3.22
4141
before_script:
4242
- apk add musl-dev cmake perl go
4343
script:

0 commit comments

Comments
 (0)