From 8c5239800bb0c940aaf8ead86ac3322d984566e8 Mon Sep 17 00:00:00 2001 From: Stepan Pyzhov Date: Mon, 3 Apr 2023 14:29:20 +0200 Subject: [PATCH] Remove support for the old Golang versions --- .github/workflows/main.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 32d3e23..c3d5beb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: test: strategy: matrix: - go-version: [ '1.11.x', '1.12.x', '1.13.x', '1.14.x', '1.15.x', '1.16.x', '1.17.x', '1.18.x', '1.19.x', '1.20.x' ] + go-version: [ '1.16.x', '1.17.x', '1.18.x', '1.19.x', '1.20.x' ] os: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.os }} steps: diff --git a/go.mod b/go.mod index 1959fae..509039a 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/spyzhov/ajson -go 1.12 +go 1.16