From d5e63f5a470c1c83cf4572259b6c2853d9ef6689 Mon Sep 17 00:00:00 2001 From: Inhere Date: Fri, 5 Jan 2024 11:15:48 +0800 Subject: [PATCH] :arrow_up: dep: update the go.mod version to go1.19 - add ci tests on go 1.21, remove test on go1.18 --- .github/workflows/go.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8faf5f4..49d089b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go_version: [1.18, 1.19, '1.20'] + go_version: [1.19, '1.20', 1.21] steps: - name: Check out code diff --git a/go.mod b/go.mod index 760db01..19f49c7 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gookit/ini/v2 -go 1.18 +go 1.19 require ( github.com/gookit/goutil v0.6.15