Skip to content

Commit d1023d8

Browse files
authored
build: go 1.23 (#362)
Signed-off-by: Chris Gianelloni <wolf31o2@blinklabs.io>
1 parent 261fc5a commit d1023d8

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: go-test
1717
strategy:
1818
matrix:
19-
go-version: [1.22.x, 1.23.x, 1.24.x]
19+
go-version: [1.23.x, 1.24.x]
2020
platform: [ubuntu-latest]
2121
runs-on: ${{ matrix.platform }}
2222
steps:

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-go@v5
2121
with:
22-
go-version: 1.22.x
22+
go-version: 1.23.x
2323
- name: golangci-lint
2424
uses: golangci/golangci-lint-action@v6
2525
with:

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ concurrency: ${{ github.ref }}
1111
jobs:
1212
create-draft-release:
1313
runs-on: ubuntu-latest
14+
permissions:
15+
content: write
1416
outputs:
1517
RELEASE_ID: ${{ steps.create-release.outputs.result }}
1618
steps:
@@ -82,7 +84,7 @@ jobs:
8284
fetch-depth: '0'
8385
- uses: actions/setup-go@v5
8486
with:
85-
go-version: 1.22.x
87+
go-version: 1.23.x
8688
- name: Build binary
8789
run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make build
8890

@@ -276,6 +278,8 @@ jobs:
276278

277279
finalize-release:
278280
runs-on: ubuntu-latest
281+
permissions:
282+
content: write
279283
needs: [create-draft-release, build-binaries, build-images]
280284
steps:
281285
- uses: actions/github-script@v7

go.mod

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

3-
go 1.22.11
3+
go 1.23.6
44

55
require (
66
github.com/SundaeSwap-finance/kugo v1.1.0

0 commit comments

Comments
 (0)