From 4a278971a213ff177cf88d3691d99a0ba22a3225 Mon Sep 17 00:00:00 2001 From: Phil Cummins <140902392+philrhc@users.noreply.github.com> Date: Sun, 16 Mar 2025 12:34:53 +0100 Subject: [PATCH] updates to actions/cache v3 (#1000) Co-authored-by: Phil Cummins --- .github/actions/go-common/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/go-common/action.yml b/.github/actions/go-common/action.yml index 2b374deb..a0116127 100644 --- a/.github/actions/go-common/action.yml +++ b/.github/actions/go-common/action.yml @@ -8,7 +8,7 @@ runs: uses: actions/setup-go@v2 with: go-version: ${{ matrix.go-version }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: | ~/.cache/go-build @@ -28,7 +28,7 @@ runs: echo GOTIP_PATH="$HOME/gotip" >> "$GITHUB_ENV" if: matrix.go-version == 'tip' shell: bash - - uses: actions/cache@v2 + - uses: actions/cache@v3 if: matrix.go-version == 'tip' with: path: | -- 2.48.1