Skip to content

Commit

Permalink
Update Github actions to omit deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tnull committed Jul 6, 2023
1 parent 77acd3b commit 68630a1
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
stable,
beta,
1.60.0, # Our MSRV
]
]
include:
- toolchain: stable
check-fmt: true
Expand All @@ -20,13 +20,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install Rust ${{ matrix.toolchain }} toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
profile: minimal
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ matrix.toolchain }}
- name: Pin packages to allow for MSRV
if: matrix.msrv
run: cargo update -p hashlink --precise "0.8.1" --verbose # hashlink 0.8.2 requires hashbrown 0.13, requiring 1.61.0
Expand Down

0 comments on commit 68630a1

Please sign in to comment.