mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
build: bump go minimum version to 1.24.0
This commit is contained in:
parent
6c3c017a94
commit
5ce39b85e6
2 changed files with 14 additions and 14 deletions
26
.github/workflows/go.yml
vendored
26
.github/workflows/go.yml
vendored
|
@ -5,25 +5,25 @@ name: "Go"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "master" ]
|
branches: ["master"]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "master" ]
|
branches: ["master"]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
|
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
||||||
go: [ "1.21.x", "1.22.x" ]
|
go: ["1.24.x"]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-go@v4
|
- uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: ${{ matrix.go }}
|
go-version: ${{ matrix.go }}
|
||||||
- run: go version
|
- run: go version
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -v ./...
|
run: go build -v ./...
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -v ./...
|
run: go test -v ./...
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,6 +1,6 @@
|
||||||
module github.com/refraction-networking/utls
|
module github.com/refraction-networking/utls
|
||||||
|
|
||||||
go 1.22.0
|
go 1.24.0
|
||||||
|
|
||||||
retract (
|
retract (
|
||||||
v1.4.1 // #218
|
v1.4.1 // #218
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue