diff --git a/.github/workflows/platforms.yml b/.github/workflows/platforms.yml index 9497e8b28d..5dc6343ae6 100644 --- a/.github/workflows/platforms.yml +++ b/.github/workflows/platforms.yml @@ -33,7 +33,7 @@ jobs: python-version: ${{ matrix.python-version }} architecture: x64 - name: Cache pip - uses: actions/cache@v3.2.6 + uses: actions/cache@v3.3.1 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -70,21 +70,21 @@ jobs: with: python-version: ${{ matrix.python-version }} architecture: x64 - - uses: actions/cache@v3.2.6 + - uses: actions/cache@v3.3.1 if: startsWith(runner.os, 'Linux') with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - - uses: actions/cache@v3.2.6 + - uses: actions/cache@v3.3.1 if: startsWith(runner.os, 'macOS') with: path: ~/Library/Caches/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - - uses: actions/cache@v3.2.6 + - uses: actions/cache@v3.3.1 if: startsWith(runner.os, 'Windows') with: path: ~\AppData\Local\pip\Cache