diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 6fd3e4b..c3b374a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [ "ubuntu-latest", "macos-latest", "windows-latest" ] - go-version: [ "1.18", "1.19", "1.20" ] + go-version: [ "1.19", "1.20", "1.21" ] runs-on: ${{ matrix.os }} steps: - name: setup Go ${{ matrix.go-version }} @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ "ubuntu-latest", "windows-latest" ] - go-version: [ "1.18", "1.19", "1.20" ] + go-version: [ "1.19", "1.20", "1.21" ] runs-on: ${{ matrix.os }} env: GOARCH: "386" @@ -50,7 +50,7 @@ jobs: - name: setup Go uses: actions/setup-go@v3 with: - go-version: "1.20" + go-version: "1.21" - name: checkout uses: actions/checkout@v4 - name: build @@ -67,7 +67,7 @@ jobs: - name: setup Go uses: actions/setup-go@v3 with: - go-version: "1.20" + go-version: "1.21" - name: checkout uses: actions/checkout@v4 - name: measure coverage diff --git a/go.mod b/go.mod index f6e74c3..4550ff3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/goccy/go-yaml -go 1.18 +go 1.19 require ( github.com/fatih/color v1.10.0