From 295527332e87b84407d25b65b24ea569a6b2d450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szil=C3=A1rd=20Parrag?= Date: Sun, 30 Jul 2023 20:44:52 +0200 Subject: [PATCH] GHA: fix deprecation warnings (save-state, set-output, Nodejs12) (#331) * gha: bump styfle/cancel-workflow-action * gha: bump Swatinem/rust-cache@v2 * gha: bump actions/checkout --------- Co-authored-by: brenzi --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 402071b2..86a8b22d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: name: Cancel Previous Runs runs-on: ubuntu-20.04 steps: - - uses: styfle/cancel-workflow-action@0.4.1 + - uses: styfle/cancel-workflow-action@0.11.0 with: access_token: ${{ secrets.GITHUB_TOKEN }} @@ -30,7 +30,7 @@ jobs: cargo clippy -- -D warnings ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install protoc run: sudo apt-get install protobuf-compiler @@ -38,7 +38,7 @@ jobs: - name: Setup Rust toolchain run: rustup show - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 with: key: ${{ matrix.rust-target }}-${{ matrix.check }}