From 777394c89f8ed6fcf1649505277c46c1cd06494d Mon Sep 17 00:00:00 2001 From: Peter Mescalchin Date: Wed, 22 Mar 2023 09:51:46 +1100 Subject: [PATCH] Bump `actions/setup-go` to `v4` - caching enabled by default, so disabling for this action --- action.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index c71daa0..994e7cf 100644 --- a/action.yaml +++ b/action.yaml @@ -26,8 +26,9 @@ runs: using: composite steps: - name: Setup Golang - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: + cache: false go-version: ${{ inputs.go-version }} go-version-file: ${{ inputs.go-version-file }} - name: Determine Golang cache paths and construct cache key