Skip to content

Commit b2f1059

Browse files
authored
Merge pull request #22 from ConductorOne/bt/fix_ci
fix ci
2 parents 1a26dfe + 40905d5 commit b2f1059

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- name: Install Go
88
uses: actions/setup-go@v5
99
with:
10-
go-version: 1.23.x
10+
go-version: 1.24.x
1111
- name: Checkout code
1212
uses: actions/checkout@v4
1313
- name: Run linters
@@ -18,7 +18,7 @@ jobs:
1818
go-test:
1919
strategy:
2020
matrix:
21-
go-version: [1.23.x]
21+
go-version: [1.22.x, 1.24.x]
2222
platform: [ubuntu-latest, windows-latest]
2323
runs-on: ${{ matrix.platform }}
2424
steps:
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install Go
5252
uses: actions/setup-go@v5
5353
with:
54-
go-version: 1.23.x
54+
go-version: 1.24.x
5555
- name: Checkout code
5656
uses: actions/checkout@v4
5757
- name: Run Docker Compose as a Daemon (to start sql server)

.github/workflows/main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Install Go
1111
uses: actions/setup-go@v5
1212
with:
13-
go-version: 1.23.x
13+
go-version: 1.24.x
1414
- name: Checkout code
1515
uses: actions/checkout@v3
1616
- name: Run linters
@@ -21,8 +21,8 @@ jobs:
2121
go-test:
2222
strategy:
2323
matrix:
24-
go-version: [ 1.23.x ]
25-
platform: [ ubuntu-latest, windows-latest ]
24+
go-version: [1.24.x]
25+
platform: [ubuntu-latest, windows-latest]
2626
runs-on: ${{ matrix.platform }}
2727
steps:
2828
- name: Install Go
@@ -38,4 +38,4 @@ jobs:
3838
if: always()
3939
uses: guyarb/[email protected]
4040
with:
41-
test-results: test.json
41+
test-results: test.json

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v5
1818
with:
19-
go-version: 1.23.x
19+
go-version: 1.24.x
2020
- name: Set up Gon
2121
run: brew tap conductorone/gon && brew install conductorone/gon/gon
2222
- name: Import Keychain Certs
@@ -27,7 +27,7 @@ jobs:
2727
- name: Run GoReleaser
2828
uses: goreleaser/goreleaser-action@v6
2929
with:
30-
version: "~> v2"
30+
version: '~> v2'
3131
args: release --clean
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.RELENG_GITHUB_TOKEN }}
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up Go
4444
uses: actions/setup-go@v5
4545
with:
46-
go-version: 1.23.x
46+
go-version: 1.24.x
4747
- name: Docker Login
4848
uses: docker/login-action@v1
4949
with:
@@ -55,7 +55,7 @@ jobs:
5555
- name: Run GoReleaser
5656
uses: goreleaser/goreleaser-action@v6
5757
with:
58-
version: "~> v2"
58+
version: '~> v2'
5959
args: release --clean -f .goreleaser.docker.yaml
6060
env:
61-
GITHUB_TOKEN: ${{ secrets.RELENG_GITHUB_TOKEN }}
61+
GITHUB_TOKEN: ${{ secrets.RELENG_GITHUB_TOKEN }}

go.mod

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

3-
go 1.23.4
3+
go 1.24.1
44

55
require (
66
github.com/conductorone/baton-sdk v0.2.98

0 commit comments

Comments
 (0)