From 1f71a0ac32b93dc819e9ca57c746251a7873600d Mon Sep 17 00:00:00 2001 From: Carlana Johnson Date: Thu, 19 Sep 2024 16:35:59 -0400 Subject: [PATCH] CI: Fix Go action --- .github/workflows/go.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0392307..0ac050b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,15 +5,10 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - name: Set up Go - uses: actions/setup-go@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: - go-version: ^1.23 - id: go - - - name: Check out code into the Go module directory - uses: actions/checkout@v1 - + go-version: "stable" - name: Download modules run: go mod download