From 4f84b571ac12664523947fc688073daa07ad63bf Mon Sep 17 00:00:00 2001 From: Alfonso Bribiesca Date: Mon, 8 Jun 2026 10:17:57 -0600 Subject: [PATCH 1/2] fix: update deprecated cache action --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 12e9362..2593168 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,10 +20,10 @@ jobs: id: go - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache Go modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.cache/go-build From 5da128147e5f7f9b76f5577ead58c798fac97114 Mon Sep 17 00:00:00 2001 From: Alfonso Bribiesca Date: Mon, 8 Jun 2026 10:22:05 -0600 Subject: [PATCH 2/2] fix: pin go version to keep ci green --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2593168..66bf5dc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "^1.23" + go-version: "1.23.x" id: go - name: Check out code into the Go module directory