Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump MSRV and edition #446

Draft
wants to merge 1 commit into
base: 1.x
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 8 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,16 @@ jobs:
RUST_BACKTRACE: 1
RUST_LOG: isahc=debug
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
submodules: recursive

- name: Install system dependencies
run: |
sudo apt update
sudo apt install -y libkrb5-dev
if: matrix.os == 'ubuntu-latest'

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.46.0"
default: true

- name: Update Cargo.lock
run: cargo update

Expand All @@ -64,9 +57,9 @@ jobs:
runs-on: ubuntu-20.04
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
submodules: recursive

- uses: actions-rs/toolchain@v1
with:
Expand All @@ -85,7 +78,7 @@ jobs:
run: cargo -Z minimal-versions update

- name: Cache Cargo dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -104,9 +97,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
submodules: recursive

- uses: actions-rs/toolchain@v1
with:
Expand All @@ -119,7 +112,7 @@ jobs:
run: cargo update

- name: Cache Cargo dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.vscode
target
Cargo.lock
*.code-workspace
.idea/*
# Code coverage reports
Expand Down
Loading
Loading