From f49e1671e76e299f2dc92418bb9ef57916abb6a8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Jul 2023 16:43:43 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v2.1.8 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/black.yml | 2 +- .github/workflows/build.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index fb9846c..94336e2 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -39,7 +39,7 @@ jobs: - name: "set pip cache dir" run: echo "::set-env name=pip-cache::$(pip cache dir)" - name: caching pip storage - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.8 with: path: ${{ env.pip-cache }} key: ${{ runner.os }}-${{ matrix.python-version }}-black-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 13b3333..1ccf6ea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: - name: "set pip cache dir" run: echo "::set-env name=pip-cache::$(pip cache dir)" - name: caching pip storage - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.8 with: path: ${{ env.pip-cache }} key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/poetry.lock') }}-${{ github.event_name }} @@ -50,7 +50,7 @@ jobs: echo "::set-env name=poetry-cache::$(poetry config cache-dir)" echo "::set-env name=poetry-version::$(poetry --version | sed 's/[^0-9.]*\([0-9.]*\).*/\1/')" - name: caching poetry environment - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.8 with: path: ${{ env.poetry-cache }} key: ${{ runner.os }}-${{ matrix.python-version }}-poetry-${{ env.poetry-version }}-${{ hashFiles('**/poetry.lock') }}-${{ github.event_name }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0215635..c42aaed 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,7 +24,7 @@ jobs: - name: "set pip cache dir" run: echo "::set-env name=pip-cache::$(pip cache dir)" - name: caching pip storage - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.8 with: path: ${{ env.pip-cache }} key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/poetry.lock') }} @@ -39,7 +39,7 @@ jobs: echo "::set-env name=poetry-cache::$(poetry config cache-dir)" echo "::set-env name=poetry-version::$(poetry --version)" - name: caching poetry environment - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.8 with: path: ${{ env.poetry-cache }} key: ${{ runner.os }}-${{ matrix.python-version }}-poetry-${{ env.poetry-version }}-${{ hashFiles('**/poetry.lock') }}