Skip to content

Commit 13311a1

Browse files
authored
fix: ci.yml
1 parent 415cdcf commit 13311a1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
- name: Check formatting
1717
run: cargo fmt --all -- --check
1818

@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
- name: Build crate (Static Output)
2828
run: cargo build --verbose --features=static_output,search
2929
- name: Build crate (Tokio)
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141
# This step helps separate buildtime and runtime errors in tests.
4242
# Do not build or run doc tests
4343
- name: Build tests (Static Output)
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262
steps:
6363
- name: Checkout repository
64-
uses: actions/checkout@v3
64+
uses: actions/checkout@v4
6565
# No terminal available in CI, only check the examples.
6666
- name: Tokio
6767
run: cargo check --example=dyn_tokio --features=dynamic_output
@@ -83,7 +83,7 @@ jobs:
8383
runs-on: ubuntu-latest
8484
steps:
8585
- name: Checkout repository
86-
uses: actions/checkout@v3
86+
uses: actions/checkout@v4
8787
- name: Run documentation tests
8888
run: cargo test --doc --all-features
8989

@@ -92,7 +92,7 @@ jobs:
9292
runs-on: ubuntu-latest
9393
steps:
9494
- uses: actions/checkout@v3
95-
- uses: dtolnay/rust-toolchain
95+
- uses: dtolnay/rust-toolchain@stable
9696
with:
9797
toolchain: stable
9898
profile: minimal

0 commit comments

Comments
 (0)