From e0234227ac8974355252e8d97ad05339104e4ec8 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Mon, 27 Feb 2023 11:47:32 +0900 Subject: [PATCH] use latest actions/setup-go and actions/checkout, use Go 1.20.x --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0f5cba9..d73135d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -8,13 +8,13 @@ jobs: steps: - name: Set up Go 1.20 - uses: actions/setup-go@v1 + uses: actions/setup-go@v3 with: - go-version: 1.20 + go-version: '1.20.x' id: go - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v3 - name: Build run: |