From 9e8c1ee9c84dbe8b64c4bd3752183b179e94e0d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 06:26:46 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/static-analysis.yml | 4 ++-- .github/workflows/test.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index a5b9ee40..3cd5ca71 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -36,7 +36,7 @@ jobs: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: ⤵️ Establish pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir }} key: "${{ runner.os }}-pip-\ @@ -51,7 +51,7 @@ jobs: poetry config virtualenvs.in-project true - name: ⤵️ Establish poetry cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: "venv-${{ steps.setup-python.outputs.python-version }}-\ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 12c9566f..820c93b9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,7 +41,7 @@ jobs: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: ⤵️ Establish pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir }} key: "${{ runner.os }}-pip-\ @@ -56,7 +56,7 @@ jobs: poetry config virtualenvs.in-project true - name: ⤵️ Establish poetry cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: "venv-${{ steps.setup-python.outputs.python-version }}-\ @@ -103,7 +103,7 @@ jobs: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: ⤵️ Establish pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir }} key: "${{ runner.os }}-pip-\ @@ -118,7 +118,7 @@ jobs: poetry config virtualenvs.in-project true - name: ⤵️ Establish poetry cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: "venv-${{ steps.setup-python.outputs.python-version }}-\