From e3daf780fff656e5d995db1b4f5ae158547e4e36 Mon Sep 17 00:00:00 2001 From: jacobdonenfeld Date: Thu, 30 Mar 2023 11:19:14 -0700 Subject: [PATCH] update actions/setup-go to v4 and disable cache Signed-off-by: jacobdonenfeld --- .github/workflows/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 16c0dc9..b9eeec7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,8 +12,9 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v4 with: + cache: false go-version: "1.19" - run: make setup-ci-env - run: make validate-ci