-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from BITNP/dependabot/github_actions/actions/…
…cache-4 build(deps): bump actions/cache from 3 to 4
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
echo "BIN_DIR=$(pipx environment -v PIPX_BIN_DIR)" >> $GITHUB_OUTPUT | ||
echo "LOCAL_VENVS=$(pipx environment -v PIPX_LOCAL_VENVS)" >> $GITHUB_OUTPUT | ||
- name: Cache poetry | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
key: ${{ runner.os }}-pipx@${{ steps.pipx-env.outputs.VERSION }}[email protected] | ||
path: | | ||
|
@@ -79,7 +79,7 @@ jobs: | |
echo "HEAD=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | ||
echo "MERGE_BASE=$(git merge-base HEAD origin/main)" >> $GITHUB_OUTPUT | ||
- name: Cache mypy | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
key: mypy-cache-${{ steps.git-rev.outputs.HEAD }} | ||
restore-keys: | | ||
|
@@ -107,7 +107,7 @@ jobs: | |
echo "BIN_DIR=$(pipx environment -v PIPX_BIN_DIR)" >> $GITHUB_OUTPUT | ||
echo "LOCAL_VENVS=$(pipx environment -v PIPX_LOCAL_VENVS)" >> $GITHUB_OUTPUT | ||
- name: Cache poetry | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
key: ${{ runner.os }}-pipx@${{ steps.pipx-env.outputs.VERSION }}[email protected] | ||
path: | | ||
|
@@ -120,7 +120,7 @@ jobs: | |
poetry config virtualenvs.in-project true | ||
echo 'PYTHON = "./.venv/bin/python"' > .env | ||
- name: Cache python dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
key: | | ||
venv-without-dev-${{ runner.os }}[email protected]@1.8.1-${{ hashFiles('poetry.lock') }} | ||
|