Skip to content

Commit 475f86b

Browse files
committed
all: update to go version 1.23
1 parent 526ff45 commit 475f86b

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,10 @@ jobs:
2424
os: [ubuntu-latest, macos-latest]
2525
# When updating this, make sure to also update the
2626
# latest_go_version variable in internal/testing/runchecks.sh.
27-
# Restore previous version when go 1.23 is out; go 1.22
28-
# purposefully broke some backwards compatibility that breaks
29-
# the golden tests, so I've disabled them for now.
30-
go-version: [1.22.x]
31-
#include:
32-
#- go-version: 1.21.x
33-
#os: ubuntu-latest
27+
go-version: [1.23.x]
28+
include:
29+
- go-version: 1.22.x
30+
os: ubuntu-latest
3431

3532
runs-on: ${{ matrix.os }}
3633
steps:

internal/testing/runchecks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ rootdir="$(pwd)"
4444
# new Go version. Some checks below we only run
4545
# for the latest Go version.
4646
latest_go_version=0
47-
if [[ $(go version) == *go1\.22* ]]; then
47+
if [[ $(go version) == *go1\.23* ]]; then
4848
latest_go_version=1
4949
fi
5050

0 commit comments

Comments
 (0)