Skip to content

Commit

Permalink
chore(ci): update to actions/checkout@v4 (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
tottoto authored Mar 10, 2024
1 parent bffa8c5 commit d9911e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Check Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install Rustfmt
run: rustup component add rustfmt
- name: Check formatting
Expand All @@ -26,7 +26,7 @@ jobs:
- stable
- beta
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Run tests
Expand All @@ -35,6 +35,6 @@ jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets --all-features

0 comments on commit d9911e8

Please sign in to comment.