From: XhmikosR Date: Thu, 28 May 2020 14:54:02 +0000 (+0300) Subject: CI: update to `actions/cache@2` X-Git-Tag: v4.5.1~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=24d5a1e996f70fcccb20c517d8e0029a70ba3f28;p=thirdparty%2Fbootstrap.git CI: update to `actions/cache@2` --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0aac36a6b1..c371f24bea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,7 @@ jobs: run: 'echo "gem: --no-document" > ~/.gemrc' - name: Set up Ruby cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: vendor/bundle key: ${{ runner.os }}-ruby-v${{ matrix.ruby }}-${{ hashFiles('Gemfile') }}-${{ hashFiles('Gemfile.lock') }} @@ -41,7 +41,7 @@ jobs: ${{ runner.os }}-ruby-v${{ matrix.ruby }}- - name: Set up npm cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-v${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}