diff --git a/.github/workflows/go_1_20.yml b/.github/workflows/go_1_20.yml index f91edc9..4649b22 100644 --- a/.github/workflows/go_1_20.yml +++ b/.github/workflows/go_1_20.yml @@ -1,7 +1,7 @@ # This workflow will build a golang project # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go -name: Go +name: "Go 1.20" on: push: @@ -10,8 +10,7 @@ on: branches: [ "master" ] jobs: - - go_1_20: + go_build_test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -19,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.20' + go-version: '1.20.7' - name: Build run: go build -v ./... diff --git a/.github/workflows/go_1_21_rc3.yml b/.github/workflows/go_1_21.yml similarity index 87% rename from .github/workflows/go_1_21_rc3.yml rename to .github/workflows/go_1_21.yml index 67d080c..822643a 100644 --- a/.github/workflows/go_1_21_rc3.yml +++ b/.github/workflows/go_1_21.yml @@ -1,7 +1,7 @@ # This workflow will build a golang project # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go -name: Go +name: "Go 1.21" on: push: @@ -10,8 +10,7 @@ on: branches: [ "master" ] jobs: - - go_1_21rc3: + go_build_test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -19,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.21.0-rc.3' + go-version: '1.21.0-rc.4' - name: Build run: go build -v ./... diff --git a/README.md b/README.md index f166c10..fa247eb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # ![uTLS](logo_small.png) uTLS -[![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go_1_20.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions)[![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go_1_21.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions) +[![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go_1_20.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions/workflows/go_1_20.yml) +[![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go_1_21.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions/workflows/go_1_21.yml) [![godoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/refraction-networking/utls#UConn) --- uTLS is a fork of "crypto/tls", which provides ClientHello fingerprinting resistance, low-level access to handshake, fake session tickets and some other features. Handshake is still performed by "crypto/tls", this library merely changes ClientHello part of it and provides low-level access.