From 51f0c4f7e5d493e0024ad865c6cb2fd69d29d177 Mon Sep 17 00:00:00 2001 From: CHIKAMATSU Naohiro Date: Sat, 23 Mar 2024 21:10:14 +0900 Subject: [PATCH] Drop go 1.18, support go 1.19 to 1.22 --- .github/workflows/multi_ver_unittest.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/multi_ver_unittest.yml b/.github/workflows/multi_ver_unittest.yml index fc44297..7ecee5b 100644 --- a/.github/workflows/multi_ver_unittest.yml +++ b/.github/workflows/multi_ver_unittest.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: ["1.18", "1.20"] + go-version: ["1.19", "1.22"] steps: - uses: actions/checkout@v4 - name: Setup Go ${{ matrix.go-version }} diff --git a/go.mod b/go.mod index 63f635c..e2085a6 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/nao1215/gup -go 1.18 +go 1.19 require ( github.com/adrg/xdg v0.4.0