From f276289a9a80c7251b517b6d290cf91c42cd16a5 Mon Sep 17 00:00:00 2001 From: Alphyr <47725341+a1phyr@users.noreply.github.com> Date: Thu, 19 Jan 2023 18:01:19 +0100 Subject: [PATCH] Update actions in CI to avoid deprecation (#163) --- .github/workflows/rust.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8abac7e..df8cd7b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -32,7 +32,7 @@ jobs: - uses: hecrj/setup-rust-action@v1 with: rust-version: ${{ matrix.rust }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: cargo test --verbose - run: cargo test --verbose --no-default-features - run: cargo test --verbose @@ -52,7 +52,7 @@ jobs: - uses: hecrj/setup-rust-action@v1 with: rust-version: nightly - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: cargo install cross - run: cross test --verbose --target=${{ matrix.target }} --no-default-features - run: cross test --verbose --target=${{ matrix.target }} @@ -71,7 +71,7 @@ jobs: with: rust-version: nightly components: miri - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Note(Lokathor): We got some cached json errors, and so we cargo clean for this run. - run: rm -fr target - run: cargo miri test --verbose --no-default-features @@ -86,7 +86,7 @@ jobs: matrix: sanitizer: [address, memory, leak] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: hecrj/setup-rust-action@v1 with: rust-version: nightly