From a19e7e928b3f8f83baa3a392c153c26a08d61faa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Oct 2022 18:36:08 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 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/v2.1.6...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/docs.yml | 2 +- .github/workflows/tests.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 87133aa..d2230cb 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 env: cache-name: cache-node-modules with: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dbd7c8f..8132ed3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,7 +35,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 id: pip-cache with: path: ~/.cache/pip @@ -60,7 +60,7 @@ jobs: id: npm-cache-dir run: echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 id: npm-cache with: path: ${{ steps.npm-cache-dir.outputs.dir }} @@ -143,7 +143,7 @@ jobs: sudo apt-get update sudo apt-get install virtualenv libsasl2-dev python-dev libldap2-dev libssl-dev - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 id: pip-cache with: path: ~/.cache/pip @@ -166,7 +166,7 @@ jobs: id: npm-cache-dir run: echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 id: npm-cache with: path: ${{ steps.npm-cache-dir.outputs.dir }} @@ -217,7 +217,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.11 with: path: ~\AppData\Local\pip\Cache key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/requirements-test.txt') }}