From 9b4124100cf829484bf5f20700180ec084d3e932 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Mar 2022 07:18:40 +0000 Subject: [PATCH] Bump actions/cache from 2.1.7 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/linting.yaml | 4 ++-- .github/workflows/release.yaml | 4 ++-- .github/workflows/tests.yaml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index d363cb0..b68eaad 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -74,7 +74,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: ⤵️ Restore cached Python PIP packages - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-v3-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }} @@ -87,7 +87,7 @@ jobs: poetry config virtualenvs.in-project true - name: ⤵️ Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: .venv key: >- diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 85149b8..bd05333 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,7 +24,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: ⤵️ Restore cached Python PIP packages - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-v3-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }} @@ -37,7 +37,7 @@ jobs: poetry config virtualenvs.in-project true - name: ⤵️ Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: .venv key: >- diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index d168238..17387b7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -25,7 +25,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: ⤵️ Restore cached Python PIP packages - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-v3-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }} @@ -38,7 +38,7 @@ jobs: poetry config virtualenvs.in-project true - name: ⤵️ Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: .venv key: venv-${{ runner.os }}-v3-${{ steps.python.outputs.python-version }}-${{ hashFiles('poetry.lock') }} @@ -72,7 +72,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: ⤵️ Restore cached Python PIP packages - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-v3-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }} @@ -85,7 +85,7 @@ jobs: poetry config virtualenvs.in-project true - name: ⤵️ Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: .venv key: >-