From 3936ebfe5d2335248146c33d01aa239e8308b01a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Tue, 11 Feb 2025 23:05:06 +0000 Subject: [PATCH] update to Go 1.24.0 and test with it on CI as well --- .github/workflows/test.yml | 23 +++++++++++------------ go_std_tables.go | 2 +- scripts/gen_go_std_tables.go | 2 +- 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b50dba0..4aef42c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: test: strategy: matrix: - go-version: [1.23.x] + go-version: [1.23.x, 1.24.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -53,22 +53,21 @@ jobs: # Static checks from this point forward. Only run on one Go version and on # linux, since it's the fastest platform, and the tools behave the same. - name: Test third-party project builds - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' + if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x' run: | go install ./scripts/check-third-party.sh - - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' + - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x' run: ./scripts/crlf-test.sh - - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' + - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x' run: diff <(echo -n) <(gofmt -d .) - - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' + - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x' run: go vet ./... - # TODO: staticcheck temporarily disabled as it was built with go1.23.4 - # - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' - # uses: dominikh/staticcheck-action@v1 - # with: - # version: "2024.1.1" - # install-go: false + - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x' + uses: dominikh/staticcheck-action@v1 + with: + version: "2025.1" + install-go: false # We don't care about GOARCH=386 particularly, hence -short, # but it helps ensure we support 32-bit hosts and targets well. @@ -82,6 +81,6 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: 1.23.x + go-version: 1.24.x cache: false - run: go test -short ./... diff --git a/go_std_tables.go b/go_std_tables.go index a340cdf..420d882 100644 --- a/go_std_tables.go +++ b/go_std_tables.go @@ -1,6 +1,6 @@ // Code generated by scripts/gen_go_std_tables.go; DO NOT EDIT. -// Generated from Go versions [go1.23.6 go1.24rc3]. +// Generated from Go versions [go1.23.6 go1.24.0]. package main diff --git a/scripts/gen_go_std_tables.go b/scripts/gen_go_std_tables.go index 0c94f40..d8d00b7 100644 --- a/scripts/gen_go_std_tables.go +++ b/scripts/gen_go_std_tables.go @@ -21,7 +21,7 @@ import ( "text/template" ) -var goVersions = []string{"go1.23.6", "go1.24rc3"} +var goVersions = []string{"go1.23.6", "go1.24.0"} var tmplTables = template.Must(template.New("").Parse(` // Code generated by scripts/gen_go_std_tables.go; DO NOT EDIT.