From b8cfe1ae431f18f12963fdb36e8d221688a96333 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 25 Oct 2020 10:43:52 +0100 Subject: [PATCH] Update actions/cache action to v2 (#711) Co-authored-by: Renovate Bot --- .github/workflows/build.yml | 2 +- .github/workflows/e2e.yml | 4 ++-- .github/workflows/lint.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 673a6a8a9..0b0da4c2b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - name: Cache node_modules - uses: actions/cache@v1.1.0 + uses: actions/cache@v2.1.2 with: path: node_modules key: node_modules diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index d710927f6..bcc500deb 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -13,12 +13,12 @@ jobs: steps: - uses: actions/checkout@v1 - name: Cache build - uses: actions/cache@v1.1.0 + uses: actions/cache@v2.1.2 with: path: build key: build - name: Cache node_modules - uses: actions/cache@v1.1.0 + uses: actions/cache@v2.1.2 with: path: node_modules key: node_modules diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0a5ded42a..8ed62df1d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - name: Cache node_modules - uses: actions/cache@v1.1.0 + uses: actions/cache@v2.1.2 with: path: node_modules key: node_modules