Skip to content

Commit a90616e

Browse files
committed
fix: update Go version from 1.24 to 1.23 (1.24 doesn't exist yet)
1 parent cc698f1 commit a90616e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/agent.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches: [ master ]
1010

1111
env:
12-
GIMME_GO_VERSION: 1.24.0
12+
GIMME_GO_VERSION: 1.23.0
1313
GIMME_OS: linux
1414
GIMME_ARCH: amd64
1515

@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v3
2121
- uses: actions/setup-go@v3
2222
with:
23-
go-version: '1.24.0'
23+
go-version: '1.23.0'
2424
check-latest: true
2525
- name: fmt
2626
run: |
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v3
4949
- uses: actions/setup-go@v3
5050
with:
51-
go-version: '1.24.0'
51+
go-version: '1.23.0'
5252
check-latest: true
5353
- name: coveralls
5454
id: coveralls
@@ -67,7 +67,7 @@ jobs:
6767
- uses: actions/checkout@v3
6868
- uses: actions/setup-go@v3
6969
with:
70-
go-version: '1.24.0'
70+
go-version: '1.23.0'
7171
check-latest: true
7272
- name: sourceclear
7373
env:
@@ -102,7 +102,7 @@ jobs:
102102
- uses: actions/checkout@v3
103103
- uses: actions/setup-go@v3
104104
with:
105-
go-version: '1.24'
105+
go-version: '1.23.0'
106106
check-latest: true
107107
- name: Set up Python 3.9
108108
uses: actions/setup-python@v3
@@ -132,7 +132,7 @@ jobs:
132132
fetch-depth: 0
133133
- uses: actions/setup-go@v3
134134
with:
135-
go-version: '1.24.0'
135+
go-version: '1.23.0'
136136
check-latest: true
137137
- name: Get the version
138138
id: get_version
@@ -164,7 +164,7 @@ jobs:
164164
fetch-depth: 0
165165
- uses: actions/setup-go@v3
166166
with:
167-
go-version: '1.24.0'
167+
go-version: '1.23.0'
168168
check-latest: true
169169
- uses: actions/checkout@v2
170170
with:
@@ -235,7 +235,7 @@ jobs:
235235
- uses: actions/checkout@v3
236236
- uses: actions/setup-go@v3
237237
with:
238-
go-version: '1.24.0'
238+
go-version: '1.23.0'
239239
check-latest: true
240240
- uses: actions/checkout@v2
241241
with:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/optimizely/agent
22

3-
go 1.24
3+
go 1.23
44

55
require (
66
github.com/go-chi/chi/v5 v5.0.8

0 commit comments

Comments
 (0)