Skip to content

Commit ae8a5bb

Browse files
committed
Update actions/checkout action to v4
1 parent bbc0da9 commit ae8a5bb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches:
1010
- master
1111
schedule:
12-
- cron: "0 1 * * *"
12+
- cron: "0 1 * * 0"
1313

1414
env:
1515
CARGO_INCREMENTAL: 0
@@ -38,7 +38,7 @@ jobs:
3838
- nightly
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242
- name: Install Rust
4343
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
4444
- run: cargo build
@@ -48,23 +48,23 @@ jobs:
4848
clippy:
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252
- name: Install Rust
5353
run: rustup update stable
5454
- run: cargo clippy --all --all-targets
5555

5656
rustfmt:
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v3
59+
- uses: actions/checkout@v4
6060
- name: Install Rust
6161
run: rustup update stable
6262
- run: cargo fmt --all --check
6363

6464
rustdoc:
6565
runs-on: ubuntu-latest
6666
steps:
67-
- uses: actions/checkout@v3
67+
- uses: actions/checkout@v4
6868
- name: Install Rust
6969
run: rustup update nightly && rustup default nightly
7070
- run: cargo doc --no-deps

0 commit comments

Comments
 (0)