From 53c0ab6c9aa0447ba09417d3a601cb55a5ffd05d Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Fri, 2 Feb 2024 11:49:42 +0800 Subject: [PATCH] ci: refactor GitHub Actions workflows - Update GitHub Actions workflow to use `checkout@v4` - Update GitHub Actions workflow to use `setup-go@v5` Signed-off-by: Bo-Yi Wu --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 681a12a..ef4664a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,9 @@ jobs: go-version: ["1.20", 1.21] steps: - name: checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Build binary