File tree Expand file tree Collapse file tree 5 files changed +9
-13
lines changed Expand file tree Collapse file tree 5 files changed +9
-13
lines changed Original file line number Diff line number Diff line change 16
16
name : go-test
17
17
strategy :
18
18
matrix :
19
- go-version : [1.22.x, 1. 23.x, 1.24.x]
19
+ go-version : [1.23.x, 1.24.x]
20
20
platform : [ubuntu-latest]
21
21
runs-on : ${{ matrix.platform }}
22
22
steps :
Original file line number Diff line number Diff line change 1
- # This file was copied from the following URL and modified:
2
- # https://github.com/golangci/golangci-lint-action/blob/master/README.md#how-to-use
3
-
4
1
name : golangci-lint
5
2
on :
6
3
push :
22
19
- uses : actions/checkout@v4
23
20
- uses : actions/setup-go@v5
24
21
with :
25
- go-version : 1.22.x
26
- cache : false
22
+ go-version : 1.23.x
27
23
- name : golangci-lint
28
24
uses : golangci/golangci-lint-action@v6
29
25
with :
30
- args : --timeout=10m
31
- # Only show new issues in a PR but show all issues for pushes
32
26
only-new-issues : ${{ github.event_name == 'pull_request' && 'true' || 'false' }}
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ concurrency: ${{ github.ref }}
11
11
jobs :
12
12
create-draft-release :
13
13
runs-on : ubuntu-latest
14
+ permissions :
15
+ contents : write
14
16
outputs :
15
17
RELEASE_ID : ${{ steps.create-release.outputs.result }}
16
18
steps :
60
62
fetch-depth : ' 0'
61
63
- uses : actions/setup-go@v5
62
64
with :
63
- go-version : 1.22 .x
65
+ go-version : 1.23 .x
64
66
- name : Build binary
65
67
run : GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make build
66
68
- name : Upload release asset
@@ -157,6 +159,8 @@ jobs:
157
159
158
160
finalize-release :
159
161
runs-on : ubuntu-latest
162
+ permissions :
163
+ contents : write
160
164
needs : [create-draft-release, build-binaries, build-images]
161
165
steps :
162
166
- uses : actions/github-script@v7
Original file line number Diff line number Diff line change 1
1
module github.com/blinklabs-io/cardano-node-api
2
2
3
- go 1.22.11
3
+ go 1.23.6
4
4
5
5
require (
6
6
connectrpc.com/connect v1.18.1
Original file line number Diff line number Diff line change 1
1
module github.com/blinklabs-io/cardano-node-api/openapi
2
2
3
- go 1.22
4
-
5
- toolchain go1.22.8
3
+ go 1.23.6
6
4
7
5
require github.com/stretchr/testify v1.10.0
8
6
You can’t perform that action at this time.
0 commit comments