Skip to content

Commit

Permalink
CI: update used actions
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellass committed Jul 28, 2024
1 parent fe1ee1e commit 39aaed5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install e2fslibs
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
beta:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@beta
- name: Install e2fslibs
run: |
Expand All @@ -41,7 +41,7 @@ jobs:
nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: Install e2fslibs
run: |
Expand All @@ -55,7 +55,7 @@ jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
Expand All @@ -64,4 +64,4 @@ jobs:
sudo apt update
sudo apt install -y e2fslibs e2fslibs-dev
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings
run: cargo clippy --all-targets --all-features -- -D warnings

0 comments on commit 39aaed5

Please sign in to comment.