This is an automated email from the ASF dual-hosted git repository.

aleksraiden pushed a commit to branch aleksraiden-patch-go1.23
in repository https://gitbox.apache.org/repos/asf/kvrocks-controller.git

commit 8d3a99b03bd1cd5863a17b655c5d8ca368f0a759
Author: Aleks Lozovyuk <[email protected]>
AuthorDate: Fri Jan 3 13:45:02 2025 +0200

    Update ci workflow to use go 1.23
---
 .github/workflows/ci.yaml | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 5845856..b27edf0 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -25,21 +25,21 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - name: Install Go
-        uses: actions/setup-go@v3
+        uses: actions/setup-go@v5
         with:
-          go-version: 1.22
+          go-version: 1.23
 
       - name: Checkout Code Base
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
         with:
           fetch-depth: 0
 
-      - uses: apache/skywalking-eyes/[email protected]
+      - uses: apache/skywalking-eyes/[email protected]
         with:
           config: .github/config/licenserc.yaml
 
       - name: Restore Go Module Cache
-        uses: actions/cache@v3
+        uses: actions/cache@v4
         with:
           path: ~/go/pkg/mod
           key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ 
hashFiles('**/go.sum') }}
@@ -58,22 +58,22 @@ jobs:
     needs: [lint]
     strategy:
       matrix:
-        go-version: [1.22, stable]
+        go-version: [1.23, stable]
         os: [ubuntu-latest]
     runs-on: ${{ matrix.os }}
     steps:
       - name: Install Go
-        uses: actions/setup-go@v3
+        uses: actions/setup-go@v5
         with:
           go-version: ${{matrix.go-version}}
 
       - name: Checkout Code Base
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
         with:
           fetch-depth: 0
 
       - name: Restore Go Module Cache
-        uses: actions/cache@v3
+        uses: actions/cache@v4
         with:
           path: ~/go/pkg/mod
           key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ 
hashFiles('**/go.sum') }}

Reply via email to