From 387ce1bd2f404d02f7cb2bee3beaeef69393d3e2 Mon Sep 17 00:00:00 2001 From: Hongwei Liu Date: Wed, 8 Jan 2025 15:20:22 +0800 Subject: [PATCH] chore: update go to 1.22.1 and toolchian to go1.22.10 Signed-off-by: Hongwei Liu --- .github/workflows/codecov.yml | 2 +- .github/workflows/pr.yaml | 4 ++-- go.mod | 5 +++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 2394a1961..104a5936d 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.22.1" - name: Run tests run: make test - name: Codecov diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index de6493843..e659e7c0a 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -23,7 +23,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.22.1" - name: Check out code into the Go module directory uses: actions/checkout@v4 with: @@ -53,7 +53,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.22.1" - name: Check out code into the Go module directory uses: actions/checkout@v4 with: diff --git a/go.mod b/go.mod index b488b147a..f289332d0 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,8 @@ module github.com/konflux-ci/integration-service -go 1.22 -toolchain go1.22.5 +go 1.22.1 + +toolchain go1.22.10 require ( github.com/agiledragon/gomonkey/v2 v2.12.0