Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v3
Browse files Browse the repository at this point in the history
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jul 7, 2023
1 parent 4cd9eff commit 2ef46ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.8
uses: actions/cache@v3.3.1
with:
path: ${{ env.pip-cache }}
key: ${{ runner.os }}-${{ matrix.python-version }}-black-${{ hashFiles('**/poetry.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.8
uses: actions/cache@v3.3.1
with:
path: ${{ env.pip-cache }}
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/poetry.lock') }}-${{ github.event_name }}
Expand All @@ -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.8
uses: actions/cache@v3.3.1
with:
path: ${{ env.poetry-cache }}
key: ${{ runner.os }}-${{ matrix.python-version }}-poetry-${{ env.poetry-version }}-${{ hashFiles('**/poetry.lock') }}-${{ github.event_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.8
uses: actions/cache@v3.3.1
with:
path: ${{ env.pip-cache }}
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/poetry.lock') }}
Expand All @@ -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.8
uses: actions/cache@v3.3.1
with:
path: ${{ env.poetry-cache }}
key: ${{ runner.os }}-${{ matrix.python-version }}-poetry-${{ env.poetry-version }}-${{ hashFiles('**/poetry.lock') }}
Expand Down

0 comments on commit 2ef46ef

Please sign in to comment.