Skip to content

Commit

Permalink
build: bump go minimum version to 1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mingyech committed Mar 2, 2025
1 parent 6c3c017 commit 5ce39b8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./...
- 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 ./...
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/refraction-networking/utls

go 1.22.0
go 1.24.0

retract (
v1.4.1 // #218
Expand Down

0 comments on commit 5ce39b8

Please sign in to comment.