From 864608f504c97ef48bfaca9f7b08018ef45ec25c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Feb 2023 08:59:18 +0000 Subject: [PATCH] Bump actions/cache from 3.2.3 to 3.2.5 Bumps [actions/cache](https://github.com/actions/cache) from 3.2.3 to 3.2.5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.2.3...v3.2.5) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/platforms.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/platforms.yml b/.github/workflows/platforms.yml index 045a2b88ae..67c8d08c67 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.3 + uses: actions/cache@v3.2.5 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.3 + - uses: actions/cache@v3.2.5 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.3 + - uses: actions/cache@v3.2.5 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.3 + - uses: actions/cache@v3.2.5 if: startsWith(runner.os, 'Windows') with: path: ~\AppData\Local\pip\Cache