Skip to content

Commit

Permalink
Bump known good clippy version to 1.83
Browse files Browse the repository at this point in the history
In addition to just moving this forward, which is good, this also
eliminates breakage on building the home crate, which we inherit through
lalrpop and term.  The home crate recently bumped its msrv to 1.81.
  • Loading branch information
dburgener committed Jan 10, 2025
1 parent a3ca2d4 commit 5be5baf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# informationally check the latest as well. We should
# regularly update the known good once we know that tests
# pass on it
rust-toolchain: [ 1.77, stable, nightly ]
rust-toolchain: [ 1.83, stable, nightly ]
steps:
- uses: actions/checkout@v3
- name: Setup
Expand All @@ -37,9 +37,9 @@ jobs:
- name: Check clippy
id: clippy
run: .github/workflows/clippy.sh ${{ matrix.rust-toolchain }}
continue-on-error: ${{ matrix.rust-toolchain != '1.77' }}
continue-on-error: ${{ matrix.rust-toolchain != '1.83' }}
- name: Store clippy flag
if: (matrix.rust-toolchain != '1.77')
if: (matrix.rust-toolchain != '1.83')
run: |
mkdir -p ./clippy-${{ matrix.rust-toolchain }}
if [[ ${{ steps.clippy.outcome }} == "success" ]] ; then \
Expand All @@ -49,7 +49,7 @@ jobs:
fi
echo ${{ github.event.number }} > ./clippy-${{ matrix.rust-toolchain }}/issue_num
- uses: actions/upload-artifact@v3
if: (matrix.rust-toolchain != '1.77')
if: (matrix.rust-toolchain != '1.83')
with:
name: clippy-${{ matrix.rust-toolchain }}
path: clippy-${{ matrix.rust-toolchain }}/
Expand Down

0 comments on commit 5be5baf

Please sign in to comment.