From f9f671623486a14b534622a197bc06e8363a9fb4 Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Sun, 14 May 2023 13:59:32 +0400 Subject: [PATCH] chore(ci): move to actions/checkout@v3 --- .github/workflows/ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e99c205..c797706 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,22 +15,20 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: cargo build --all-targets --all-features rustfmt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - run: rustup component add rustfmt + - uses: actions/checkout@v3 - run: cargo fmt --version - run: cargo fmt -- --check clippy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - run: rustup component add clippy + - uses: actions/checkout@v3 - run: cargo clippy --version - run: cargo clippy - run: cargo clippy --all-targets --no-default-features @@ -39,7 +37,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: cargo test - run: cargo test --no-default-features - run: cargo test --features uuid,time