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: >-