From 45a7386c39832c8abc8b2ec5b83019ffe6a2ac84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 11:58:06 +0000 Subject: [PATCH] Bump actions/cache from 3.0.1 to 3.3.1 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.1 to 3.3.1. - [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.0.1...v3.3.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- .github/workflows/post-dependabot.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d89d616a223..9d86cddbaeb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: with: python-version: 3.8 - name: Cache PyPI - uses: actions/cache@v3.0.1 + uses: actions/cache@v3.3.1 with: key: pip-lint-${{ hashFiles('requirements/*.txt') }} path: ~/.cache/pip @@ -93,7 +93,7 @@ jobs: with: submodules: true - name: Cache llhttp generated files - uses: actions/cache@v3.0.1 + uses: actions/cache@v3.3.1 id: cache with: key: llhttp-${{ hashFiles('vendor/llhttp/package.json', 'vendor/llhttp/src/**/*') }} @@ -159,7 +159,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" # - name: Cache - name: Cache PyPI - uses: actions/cache@v3.0.1 + uses: actions/cache@v3.3.1 with: key: pip-ci-${{ runner.os }}-${{ matrix.pyver }}-${{ matrix.no-extensions }}-${{ hashFiles('requirements/*.txt') }} path: ${{ steps.pip-cache.outputs.dir }} diff --git a/.github/workflows/post-dependabot.yml b/.github/workflows/post-dependabot.yml index 9d096cab8da..b1b8acab093 100644 --- a/.github/workflows/post-dependabot.yml +++ b/.github/workflows/post-dependabot.yml @@ -26,7 +26,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v3 - name: Cache PyPI - uses: actions/cache@v3.0.1 + uses: actions/cache@v3.3.1 with: key: post-update path: ~/.cache/pip