From 2dd588fab1c0df90fa88afe257c555222d181b47 Mon Sep 17 00:00:00 2001 From: Lan Liang Date: Fri, 8 Mar 2024 16:29:04 +0800 Subject: [PATCH] Update actions setup-go and checkout to v4. Signed-off-by: Lan Liang --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0d5207fc..39aed1bc 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -10,12 +10,12 @@ jobs: steps: - name: Set up Go 1.x - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: 1.21 - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Get dependencies run: go get -v -t -d ./...