Skip to content

Commit cc910dc

Browse files
chore(ci): upgrade Alpine Linux to v3.23 / Rust to v1.92
1 parent 6e70be3 commit cc910dc

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.91.0
18+
name: rustfmt / 1.92.0
1919
runs-on: ubuntu-latest
2020

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

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

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

3131
clippy:
32-
name: clippy / 1.91.0
32+
name: clippy / 1.92.0
3333
runs-on: ubuntu-latest
3434

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

38-
- uses: dtolnay/rust-toolchain@1.91.0
38+
- uses: dtolnay/rust-toolchain@1.92.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.91.0
46+
name: cargo-hack / 1.92.0
4747
runs-on: ubuntu-latest
4848
steps:
4949
- uses: actions/checkout@v6
5050

51-
- uses: dtolnay/rust-toolchain@1.91.0
51+
- uses: dtolnay/rust-toolchain@1.92.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.91-alpine3.22
6+
image: rust:1.92-alpine3.23
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.91-alpine3.22
14+
image: rust:1.92-alpine3.23
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.91-alpine3.22
22+
image: rust:1.92-alpine3.23
2323
before_script:
2424
- apk add musl-dev
2525
- rustup component add clippy
@@ -28,15 +28,15 @@ rust:clippy:
2828

2929
rust:hack:
3030
stage: test
31-
image: rust:1.91-alpine3.22
31+
image: rust:1.92-alpine3.23
3232
before_script:
3333
- apk add musl-dev cargo-hack
3434
script:
3535
- cargo hack check --feature-powerset --no-dev-deps
3636

3737
rust:test:
3838
stage: test
39-
image: rust:1.91-alpine3.22
39+
image: rust:1.92-alpine3.23
4040
before_script:
4141
- apk add musl-dev
4242
script:

0 commit comments

Comments
 (0)