From 64c1f2f26a744d926e55b8157003fc4046efc348 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Apr 2022 21:57:46 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-marlin.yml | 4 ++-- .github/workflows/publish-docs.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-marlin.yml b/.github/workflows/build-marlin.yml index d101981bb..aff2c3002 100644 --- a/.github/workflows/build-marlin.yml +++ b/.github/workflows/build-marlin.yml @@ -35,7 +35,7 @@ jobs: path: Marlin-Configurations - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -43,7 +43,7 @@ jobs: ${{ runner.os }}-pip- - name: Cache PlatformIO - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.platformio key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} diff --git a/.github/workflows/publish-docs.yaml b/.github/workflows/publish-docs.yaml index 67642ab02..c7d5f9bfb 100644 --- a/.github/workflows/publish-docs.yaml +++ b/.github/workflows/publish-docs.yaml @@ -155,7 +155,7 @@ jobs: node-version: '12.x' - name: Cache dependencies - uses: actions/cache@v1 + uses: actions/cache@v3.0.1 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}