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 up actions/checkout version to v4 #263

Merged
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
cargo-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get latest version of stable rust
run: rustup update stable
- name: Check formatting with cargofmt
Expand All @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
needs: cargo-fmt
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get latest version of stable rust
run: rustup update stable
- name: Lint code for quality and style with Clippy
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
needs: cargo-fmt
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get latest version of stable rust
run: rustup update stable
- name: Run tests in release
Expand All @@ -35,7 +35,7 @@ jobs:
image: rust
needs: cargo-fmt
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get latest version of stable rust
run: rustup update stable
- name: Run tests in release
Expand All @@ -46,7 +46,7 @@ jobs:
container:
image: rust
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get latest version of stable rust
run: rustup update stable
- name: Check rustdoc links
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
needs: cargo-fmt
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust nightly
run: rustup toolchain install nightly
- name: Install cargo-udeps
Expand Down