From 529517b495d41a21a217ba2466a88264e4367ce2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 00:28:11 +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/python-code-generation.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-code-generation.yaml b/.github/workflows/python-code-generation.yaml index 6326caa..751307b 100644 --- a/.github/workflows/python-code-generation.yaml +++ b/.github/workflows/python-code-generation.yaml @@ -42,7 +42,7 @@ jobs: run: mkdir ./grpc/ - name: Restore cached grpc_python_plugin id: cache-grpc-python-plugin-restore - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ./grpc/grpc_python_plugin key: grpc-python-plugin-v1.58.1 @@ -57,7 +57,7 @@ jobs: - name: Save grpc_python_plugin if: steps.cache-grpc-python-plugin-restore.outputs.cache-hit != 'true' id: cache-grpc-python-plugin-save - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ./grpc/grpc_python_plugin key: ${{ steps.cache-grpc-python-plugin-restore.outputs.cache-primary-key }}