Skip to content

Commit abedda1

Browse files
committed
ci: update go version from v1.26.3 to v1.26.4
1 parent 42412f8 commit abedda1

5 files changed

Lines changed: 64 additions & 65 deletions

File tree

.github/workflows/golangci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Golangci-lint
2-
2+
33
on:
44
push:
55
branches: [dev, release/**]
@@ -14,16 +14,16 @@ jobs:
1414
packages: read
1515
runs-on: ubuntu-latest
1616
steps:
17-
- name: Checkout code
18-
uses: actions/checkout@v6
19-
20-
- name: Setup Go
21-
uses: actions/setup-go@v6
22-
with:
23-
go-version: '1.26.3'
24-
25-
- name: Install golangci-lint
26-
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
27-
28-
- name: Run golangci-lint
29-
run: golangci-lint run --timeout=5m ./...
17+
- name: Checkout code
18+
uses: actions/checkout@v6
19+
20+
- name: Setup Go
21+
uses: actions/setup-go@v6
22+
with:
23+
go-version: "1.26.4"
24+
25+
- name: Install golangci-lint
26+
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
27+
28+
- name: Run golangci-lint
29+
run: golangci-lint run --timeout=5m ./...

.github/workflows/gotest.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
name: Go Test
22

33
on:
4-
push:
5-
branches: [dev, release/**]
6-
pull_request:
7-
branches: [main, dev, release/**]
8-
4+
push:
5+
branches: [dev, release/**]
6+
pull_request:
7+
branches: [main, dev, release/**]
8+
99
jobs:
10-
go-test:
11-
name: Go Test
12-
permissions:
13-
contents: read
14-
packages: read
15-
runs-on: ubuntu-latest
16-
steps:
17-
- name: Checkout code
18-
uses: actions/checkout@v6
19-
20-
- name: Setup Go
21-
uses: actions/setup-go@v6
22-
with:
23-
go-version: '1.26.3'
10+
go-test:
11+
name: Go Test
12+
permissions:
13+
contents: read
14+
packages: read
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v6
19+
20+
- name: Setup Go
21+
uses: actions/setup-go@v6
22+
with:
23+
go-version: "1.26.4"
2424

25-
- name: Run tests
26-
run: go test -short ./...
25+
- name: Run tests
26+
run: go test -short ./...

.github/workflows/govulncheck.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
packages: read
1515
runs-on: ubuntu-latest
1616
steps:
17-
- name: Checkout code
18-
uses: actions/checkout@v6
17+
- name: Checkout code
18+
uses: actions/checkout@v6
1919

20-
- name: Setup Go
21-
uses: actions/setup-go@v6
22-
with:
23-
go-version: '1.26.3'
20+
- name: Setup Go
21+
uses: actions/setup-go@v6
22+
with:
23+
go-version: "1.26.4"
2424

25-
- name: Setup Go Vulncheck
26-
run: go install golang.org/x/vuln/cmd/govulncheck@latest
25+
- name: Setup Go Vulncheck
26+
run: go install golang.org/x/vuln/cmd/govulncheck@latest
2727

28-
- name: Run govulncheck
29-
run: govulncheck ./...
28+
- name: Run govulncheck
29+
run: govulncheck ./...

.github/workflows/integration-tests.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: Integration Tests
22
on:
33
pull_request:
4-
branches: [ main, dev ]
4+
branches: [main, dev]
55
push:
6-
branches: [ main, dev ]
6+
branches: [main, dev]
77
workflow_dispatch:
88
inputs:
99
test_size:
10-
description: 'Test size (small/medium/large)'
10+
description: "Test size (small/medium/large)"
1111
required: true
12-
default: 'small'
12+
default: "small"
1313
type: choice
1414
options:
1515
- small
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
if: github.event_name == 'pull_request' || (github.event_name == 'workflow_dispatch' && github.event.inputs.test_size == 'small')
2727
timeout-minutes: 10
28-
28+
2929
services:
3030
timescaledb:
3131
image: timescale/timescaledb-ha:pg17
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up Go
4848
uses: actions/setup-go@v6
4949
with:
50-
go-version: '1.26.3'
50+
go-version: "1.26.4"
5151
cache: true
5252

5353
- name: Wait for PostgreSQL
@@ -81,7 +81,7 @@ jobs:
8181
pool_max_conn_idle_time: 2m
8282
pool_health_check_period: 30s
8383
pool_max_conn_lifetime_jitter: 30s
84-
84+
8585
chain_id: gnoland
8686
max_height: 1000
8787
from_height: 1
@@ -103,7 +103,7 @@ jobs:
103103
runs-on: ubuntu-latest
104104
if: (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')) || (github.event_name == 'workflow_dispatch' && github.event.inputs.test_size == 'medium')
105105
timeout-minutes: 30
106-
106+
107107
services:
108108
timescaledb:
109109
image: timescale/timescaledb-ha:pg17
@@ -125,7 +125,7 @@ jobs:
125125
- name: Set up Go
126126
uses: actions/setup-go@v6
127127
with:
128-
go-version: '1.26.3'
128+
go-version: "1.26.4"
129129
cache: true
130130

131131
- name: Wait for PostgreSQL
@@ -159,7 +159,7 @@ jobs:
159159
pool_max_conn_idle_time: 2m
160160
pool_health_check_period: 30s
161161
pool_max_conn_lifetime_jitter: 30s
162-
162+
163163
chain_id: gnoland
164164
max_height: 10000
165165
from_height: 1
@@ -181,7 +181,7 @@ jobs:
181181
runs-on: ubuntu-latest
182182
if: github.event_name == 'workflow_dispatch' && github.event.inputs.test_size == 'large'
183183
timeout-minutes: 90
184-
184+
185185
services:
186186
timescaledb:
187187
image: timescale/timescaledb-ha:pg17
@@ -203,7 +203,7 @@ jobs:
203203
- name: Set up Go
204204
uses: actions/setup-go@v6
205205
with:
206-
go-version: '1.26.3'
206+
go-version: "1.26.4"
207207
cache: true
208208

209209
- name: Wait for PostgreSQL
@@ -237,7 +237,7 @@ jobs:
237237
pool_max_conn_idle_time: 2m
238238
pool_health_check_period: 30s
239239
pool_max_conn_lifetime_jitter: 30s
240-
240+
241241
chain_id: gnoland
242242
max_height: 100000
243243
from_height: 1
@@ -259,4 +259,3 @@ jobs:
259259
integration/test_results/
260260
state_dumps/
261261
retention-days: 7
262-

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- "v*"
77

88
jobs:
99
build-and-release:
@@ -19,14 +19,14 @@ jobs:
1919
- name: Setup Go
2020
uses: actions/setup-go@v6
2121
with:
22-
go-version: '1.26.3'
22+
go-version: "1.26.4"
2323

2424
- name: Get version
2525
id: version
2626
run: |
2727
VERSION=${GITHUB_REF#refs/tags/v}
2828
echo "version=$VERSION" >> $GITHUB_OUTPUT
29-
29+
3030
# Check if this is a pre-release (contains alpha, beta, rc, etc.)
3131
if [[ $VERSION =~ (alpha|beta|rc) ]]; then
3232
echo "prerelease=true" >> $GITHUB_OUTPUT
@@ -86,7 +86,7 @@ jobs:
8686
generate_release_notes: true
8787
body: |
8888
## Release ${{ steps.version.outputs.version }}
89-
89+
9090
### Installation for the indexer
9191
Download the binary for your platform and make it executable:
9292
```bash
@@ -144,7 +144,7 @@ jobs:
144144
GIT_BRANCH=${{ steps.gitmeta.outputs.git_branch }}
145145
cache-from: type=gha
146146
cache-to: type=gha,mode=max
147-
147+
148148
- name: Build and push Docker API image
149149
uses: docker/build-push-action@v6
150150
with:
@@ -161,4 +161,4 @@ jobs:
161161
GIT_TAG=${{ steps.gitmeta.outputs.git_tag }}
162162
GIT_BRANCH=${{ steps.gitmeta.outputs.git_branch }}
163163
cache-from: type=gha
164-
cache-to: type=gha,mode=max
164+
cache-to: type=gha,mode=max

0 commit comments

Comments
 (0)