From f3380c8dfe0cd72307f7af0cb5f2a74b6e2b6efe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Fri, 7 Jun 2024 15:40:32 +0800 Subject: [PATCH] Drop support for go1.18 and go1.19 --- .github/workflows/debug.yml | 32 -------------------------------- go.mod | 2 +- 2 files changed, 1 insertion(+), 33 deletions(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index befb67e..7ae30fa 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -30,38 +30,6 @@ jobs: - name: Build run: | make test - build_go118: - name: Linux Debug build (Go 1.18) - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Setup Go - uses: actions/setup-go@v4 - with: - go-version: ~1.18 - continue-on-error: true - - name: Build - run: | - make test - build_go119: - name: Linux Debug build (Go 1.19) - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Setup Go - uses: actions/setup-go@v4 - with: - go-version: ~1.19 - continue-on-error: true - - name: Build - run: | - make test build_go120: name: Linux Debug build (Go 1.20) runs-on: ubuntu-latest diff --git a/go.mod b/go.mod index 7ca779f..363e075 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/sagernet/sing -go 1.18 +go 1.20 require ( github.com/stretchr/testify v1.9.0