From 6a9462c029132d77f3ce5ef27c764614a2571bba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Feb 2023 17:56:37 +0000 Subject: [PATCH] gh-actions(deps): bump actions/cache from 2.1.6 to 3.2.6 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.6. - [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/v2.1.6...v3.2.6) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test-python-package.yaml | 4 ++-- .github/workflows/test-python-plugin-example.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-python-package.yaml b/.github/workflows/test-python-package.yaml index 8e703ce1..f867edc1 100644 --- a/.github/workflows/test-python-package.yaml +++ b/.github/workflows/test-python-package.yaml @@ -113,7 +113,7 @@ jobs: - name: Setup pip cache dir continue-on-error: true # see https://github.com/actions/cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.6 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-${{ matrix.python }}-${{ hashFiles(format('{0}/requirements/*.txt', env.project-directory)) }} @@ -211,7 +211,7 @@ jobs: - name: Setup pip cache dir continue-on-error: true # see https://github.com/actions/cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.6 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-${{ env.latest-python-version }}-${{ hashFiles(format('{0}/requirements/*.txt', env.project-directory)) }} diff --git a/.github/workflows/test-python-plugin-example.yaml b/.github/workflows/test-python-plugin-example.yaml index 8c21306a..9b5ff0c3 100644 --- a/.github/workflows/test-python-plugin-example.yaml +++ b/.github/workflows/test-python-plugin-example.yaml @@ -97,7 +97,7 @@ jobs: - name: Setup pip cache dir continue-on-error: true # see https://github.com/actions/cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.6 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-${{ matrix.python }}-${{ hashFiles(format('{0}/requirements/*.txt', env.project-directory)) }} @@ -184,7 +184,7 @@ jobs: - name: Setup pip cache dir continue-on-error: true # see https://github.com/actions/cache - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.6 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-${{ env.latest-python-version }}-${{ hashFiles(format('{0}/requirements/*.txt', env.project-directory)) }}