Skip to content

Commit

Permalink
Upgrade Rust version in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
idanarye committed Jul 5, 2024
1 parent ccc22f2 commit 3dcb7e4
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 @@ -25,7 +25,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
rust: [1.76.0, nightly]
rust: [1.79.0, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.76.0
toolchain: 1.79.0
components: rustfmt
- name: Run fmt --all -- --check
run: cargo fmt --all -- --check
Expand All @@ -65,7 +65,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.76.0
toolchain: 1.79.0
components: clippy
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libudev-dev
Expand All @@ -87,7 +87,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.76.0
toolchain: 1.79.0
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libudev-dev
- name: Cache cargo
Expand All @@ -112,7 +112,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
targets: wasm32-unknown-unknown
toolchain: 1.76.0
toolchain: 1.79.0
- name: Build docs
env:
GITHUB_REPO: ${{ github.repository }}
Expand Down

0 comments on commit 3dcb7e4

Please sign in to comment.