From 5ce39b85e60b70b544b9efc873bb204ed7eaaea9 Mon Sep 17 00:00:00 2001 From: Mingye Chen Date: Sat, 1 Mar 2025 19:58:18 -0700 Subject: [PATCH] build: bump go minimum version to 1.24.0 --- .github/workflows/go.yml | 26 +++++++++++++------------- go.mod | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b093de8..6fb71cd 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,25 +5,25 @@ name: "Go" on: push: - branches: [ "master" ] + branches: ["master"] pull_request: - branches: [ "master" ] + branches: ["master"] jobs: build: strategy: fail-fast: false matrix: - os: [ "ubuntu-latest", "windows-latest", "macos-latest" ] - go: [ "1.21.x", "1.22.x" ] + os: ["ubuntu-latest", "windows-latest", "macos-latest"] + go: ["1.24.x"] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 - with: - go-version: ${{ matrix.go }} - - run: go version - - name: Build - run: go build -v ./... - - name: Test - run: go test -v ./... \ No newline at end of file + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: ${{ matrix.go }} + - run: go version + - name: Build + run: go build -v ./... + - name: Test + run: go test -v ./... diff --git a/go.mod b/go.mod index ab3fad0..070b95c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/refraction-networking/utls -go 1.22.0 +go 1.24.0 retract ( v1.4.1 // #218