From de65eb83646601cabe91269b0f36347934f42b71 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Oct 2022 10:41:12 +0000 Subject: [PATCH] Bump actions/cache from 1 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 1 to 3.0.11. - [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/v1...v3.0.11) --- 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..48c09204a 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.11 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.11 with: path: ~/.platformio key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} diff --git a/.github/workflows/publish-docs.yaml b/.github/workflows/publish-docs.yaml index 67642ab02..0d6d6ceda 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.11 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}