diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml index 251da3d..90488b4 100644 --- a/.github/workflows/formatting.yml +++ b/.github/workflows/formatting.yml @@ -18,7 +18,7 @@ jobs: python-version: 3.9 - name: Set up cache for Python dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }} diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index de23a2f..dcdf766 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -14,7 +14,7 @@ jobs: python-version: 3.9 - name: Set up cache for Python dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 71d5b10..56653db 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -49,7 +49,7 @@ jobs: python-version: '3.10' - name: Set up cache for Python dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}