From d5665f49a486e8aff27d8f7ee65cfbb187401f20 Mon Sep 17 00:00:00 2001 From: Dylan Arbour Date: Fri, 23 Feb 2024 18:08:23 -0500 Subject: Update setup-go to v5 Removes deprecation notices on actions builds. v5 updates the version of node and `cache: false` disables the errors related to not finding a go.sum --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65820c58..b5368ae9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -150,9 +150,10 @@ jobs: ## Go ## - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version: '${{ steps.metadata.outputs.version }}' + cache: false if: steps.metadata.outputs.module == 'go' - name: Configure go -- cgit