Skip to content

Commit 284da37

Browse files
committed
update Go version to 1.23.6
1 parent b08fce1 commit 284da37

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- name: Install Go
88
uses: actions/setup-go@v4
99
with:
10-
go-version: 1.22.x
10+
go-version: 1.23.x
1111
- name: Checkout code
1212
uses: actions/checkout@v3
1313
- name: Run linters
@@ -18,7 +18,7 @@ jobs:
1818
go-test:
1919
strategy:
2020
matrix:
21-
go-version: [1.22.x]
21+
go-version: [1.23.x]
2222
platform: [ubuntu-latest]
2323
runs-on: ${{ matrix.platform }}
2424
steps:

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Install Go
1111
uses: actions/setup-go@v4
1212
with:
13-
go-version: 1.22.x
13+
go-version: 1.23.x
1414
- name: Checkout code
1515
uses: actions/checkout@v3
1616
- name: Run linters
@@ -21,7 +21,7 @@ jobs:
2121
go-test:
2222
strategy:
2323
matrix:
24-
go-version: [ 1.22.x ]
24+
go-version: [ 1.23.x ]
2525
platform: [ ubuntu-latest ]
2626
runs-on: ${{ matrix.platform }}
2727
steps:

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v4
1818
with:
19-
go-version: 1.22.x
19+
go-version: 1.23.x
2020
- name: Set up Gon
2121
run: brew tap conductorone/gon && brew install conductorone/gon/gon
2222
- name: Import Keychain Certs
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up Go
4444
uses: actions/setup-go@v4
4545
with:
46-
go-version: 1.22.x
46+
go-version: 1.23.x
4747
- name: Docker Login
4848
uses: docker/login-action@v1
4949
with:

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
module github.com/conductorone/baton-jamf
22

3-
go 1.21
3+
go 1.23
44

5-
toolchain go1.22.6
5+
toolchain go1.23.6
66

77
require (
88
github.com/conductorone/baton-sdk v0.2.46
99
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
1010
github.com/spf13/viper v1.18.2
1111
go.uber.org/zap v1.27.0
12+
google.golang.org/grpc v1.63.2
1213
)
1314

1415
require (
@@ -84,7 +85,6 @@ require (
8485
golang.org/x/sys v0.21.0 // indirect
8586
golang.org/x/text v0.16.0 // indirect
8687
google.golang.org/genproto/googleapis/rpc v0.0.0-20240506185236-b8a5c65736ae // indirect
87-
google.golang.org/grpc v1.63.2 // indirect
8888
google.golang.org/protobuf v1.34.1 // indirect
8989
gopkg.in/ini.v1 v1.67.0 // indirect
9090
gopkg.in/square/go-jose.v2 v2.6.0 // indirect

0 commit comments

Comments
 (0)