From f4991a6f0cc19f17ce526bb90da80c30cb32a299 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Apr 2021 16:47:24 +0000 Subject: [PATCH] build(deps): update actions/cache requirement to v2.1.5 Updates the requirements on [actions/cache](https://github.com/actions/cache) to permit the latest version. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/commits/1a9e2138d905efd099035b49d8b7a3888c653ca8) Signed-off-by: dependabot[bot] --- .github/workflows/blog.yaml | 6 +++--- .github/workflows/ci.yaml | 2 +- .github/workflows/release_main.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/blog.yaml b/.github/workflows/blog.yaml index 1ef670bcc..ba1050669 100644 --- a/.github/workflows/blog.yaml +++ b/.github/workflows/blog.yaml @@ -16,7 +16,7 @@ jobs: # submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 3 - name: Cache Conda - uses: actions/cache@v1 + uses: actions/cache@v2.1.5 with: path: ~/conda_pkgs_dir key: ${{ runner.os }}-conda6-${{ hashFiles('environment.yml') }} @@ -42,7 +42,7 @@ jobs: run: | Rscript ./dependencies.R - name: Restore Blogdown Cache - uses: actions/cache@v2 + uses: actions/cache@v2.1.5 with: path: | ./blogdown @@ -65,7 +65,7 @@ jobs: - uses: actions/setup-node@v1 with: node-version: "12" - - uses: actions/cache@v2 + - uses: actions/cache@v2.1.5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 75d089092..d849bc1b3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v2.1.5 with: node-version: "14" - - uses: actions/cache@v2 + - uses: actions/cache@v2.1.5 with: path: ~/.npm key: ${{ runner.os }}-node3-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release_main.yml b/.github/workflows/release_main.yml index 34f4bb81d..5f9aec447 100644 --- a/.github/workflows/release_main.yml +++ b/.github/workflows/release_main.yml @@ -47,7 +47,7 @@ jobs: with: node-version: "14" - name: Cache Node.js modules - uses: actions/cache@v2 + uses: actions/cache@v2.1.5 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}