From 14d2e534e36a01e6121563b8f111ae6693b01d78 Mon Sep 17 00:00:00 2001 From: Gavin Patton Date: Thu, 25 May 2023 09:30:07 +0100 Subject: [PATCH] (CONT-903) Address cache@v2 deprecation warnings cache@v2 deprecation warnings were missed in the previous PR to remove deprecation warnings in this repo. This PR addresses these remaining warnings --- .github/workflows/ci.yml | 2 +- .github/workflows/nightly.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a8ac3ab..b664fe04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: ruby-version: "2.7" - name: Cache gems - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: vendor/gems key: ${{ runner.os }}-pr-${{ hashFiles('**/Gemfile') }} diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 943e76d7..06a6c040 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -38,7 +38,7 @@ jobs: ruby-version: "2.7" - name: Cache gems - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: vendor/gems key: ${{ runner.os }}-pr-${{ hashFiles('**/Gemfile') }}