Skip to content

Commit 7403a9f

Browse files
chore(ci): upgrade Rust to v1.93
1 parent 550b63c commit 7403a9f

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

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

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

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

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

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

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

51-
- uses: dtolnay/rust-toolchain@1.92.0
51+
- uses: dtolnay/rust-toolchain@1.93.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,39 +3,39 @@ stages:
33

44
rust:deny:
55
stage: test
6-
image: rust:1.92-alpine3.23
6+
image: rust:1.93-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.92-alpine3.23
14+
image: rust:1.93-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.92-alpine3.23
22+
image: rust:1.93-alpine3.23
2323
before_script:
2424
- rustup component add clippy
2525
script:
2626
- cargo clippy --all-features -- -D warnings
2727

2828
rust:hack:
2929
stage: test
30-
image: rust:1.92-alpine3.23
30+
image: rust:1.93-alpine3.23
3131
before_script:
3232
- apk add cargo-hack
3333
script:
3434
- cargo hack check --feature-powerset --no-dev-deps
3535

3636
rust:test:
3737
stage: test
38-
image: rust:1.92-alpine3.23
38+
image: rust:1.93-alpine3.23
3939
before_script:
4040
- apk add libpq-dev
4141
script:

0 commit comments

Comments
 (0)