Skip to content

Commit 381f517

Browse files
authored
Merge branch 'main' into zerosnacks/integrate-codeql-yml
2 parents 47df92c + 0a11532 commit 381f517

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# Only run tests on latest stable and above
4141
- name: Install cargo-nextest
4242
if: ${{ matrix.rust != '1.88' }} # MSRV
43-
uses: taiki-e/install-action@e5f8d33e7166e0491b2ab4ff0567cc6cd6772737 # master
43+
uses: taiki-e/install-action@522492a8c115f1b6d4d318581f09638e9442547b # master
4444
with:
4545
tool: nextest
4646
- name: build
@@ -62,7 +62,7 @@ jobs:
6262
- uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master
6363
with:
6464
toolchain: stable
65-
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2
65+
- uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2
6666
with:
6767
cache-on-failure: true
6868
- run: cargo test --workspace --doc
@@ -80,10 +80,10 @@ jobs:
8080
- uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master
8181
with:
8282
toolchain: stable
83-
- uses: taiki-e/install-action@e5f8d33e7166e0491b2ab4ff0567cc6cd6772737 # master
83+
- uses: taiki-e/install-action@522492a8c115f1b6d4d318581f09638e9442547b # master
8484
with:
8585
tool: cargo-hack
86-
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2
86+
- uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2
8787
with:
8888
cache-on-failure: true
8989
- name: cargo hack
@@ -102,7 +102,7 @@ jobs:
102102
with:
103103
toolchain: nightly
104104
components: clippy
105-
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2
105+
- uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2
106106
with:
107107
cache-on-failure: true
108108
- run: cargo clippy --workspace --all-targets --all-features
@@ -121,7 +121,7 @@ jobs:
121121
- uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master
122122
with:
123123
toolchain: nightly
124-
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2
124+
- uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2
125125
with:
126126
cache-on-failure: true
127127
- run: cargo doc --workspace --all-features --no-deps --document-private-items

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![doc = include_str!("../README.md")]
22
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
3-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
3+
#![cfg_attr(docsrs, feature(doc_cfg))]
44

55
#[macro_use]
66
extern crate tracing;

0 commit comments

Comments
 (0)