Skip to content

Commit 07dfe04

Browse files
authored
Merge branch 'v2.2.x' into develop
2 parents c13290e + 008102b commit 07dfe04

4 files changed

Lines changed: 33 additions & 29 deletions

File tree

.github/workflows/buildimage.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Golang
4747
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
4848
with:
49-
go-version: 1.26
49+
go-version: 1.26.1
5050

5151
- name: Fetching Go Cache Paths
5252
id: go-cache-paths
@@ -67,47 +67,47 @@ jobs:
6767
with:
6868
path: ${{ steps.go-cache-paths.outputs.go-mod }}
6969
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
70-
70+
7171
- name: make clean
7272
run: |-
7373
go version
74-
74+
7575
which pg_config
7676
pg_config --version
77-
77+
7878
export PATH=$(pg_config --bindir):$PATH
7979
export PGXS=$(pg_config --pgxs)
80-
80+
8181
export SERVER_LIB=$(pg_config --includedir)/server
8282
export INTERNAL_LIB=$(pg_config --includedir)/internal
8383
8484
export CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
8585
export PG_CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
86-
86+
8787
export LDFLAGS=$(pg_config --ldfalgs)
8888
export PG_LDFLAGS=$(pg_config --ldfalgs)
89-
89+
9090
make clean
9191
9292
- name: make
9393
run: |-
9494
go version
95-
95+
9696
which pg_config
9797
pg_config --version
98-
98+
9999
export PATH=$(pg_config --bindir):$PATH
100100
export PGXS=$(pg_config --pgxs)
101-
101+
102102
export SERVER_LIB=$(pg_config --includedir)/server
103103
export INTERNAL_LIB=$(pg_config --includedir)/internal
104104
105105
export CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
106106
export PG_CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
107-
107+
108108
export LDFLAGS=$(pg_config --ldfalgs)
109109
export PG_LDFLAGS=$(pg_config --ldfalgs)
110-
110+
111111
make
112112
113113
- name: gzip the steampipe_postgres_fdw.so
@@ -165,7 +165,7 @@ jobs:
165165
- name: Setup Golang
166166
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
167167
with:
168-
go-version: 1.26
168+
go-version: 1.26.1
169169

170170
- name: Fetching Go Cache Paths
171171
id: go-cache-paths
@@ -186,47 +186,47 @@ jobs:
186186
with:
187187
path: ${{ steps.go-cache-paths.outputs.go-mod }}
188188
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
189-
189+
190190
- name: make clean
191191
run: |-
192192
go version
193-
193+
194194
which pg_config
195195
pg_config --version
196-
196+
197197
export PATH=$(pg_config --bindir):$PATH
198198
export PGXS=$(pg_config --pgxs)
199-
199+
200200
export SERVER_LIB=$(pg_config --includedir)/server
201201
export INTERNAL_LIB=$(pg_config --includedir)/internal
202202
203203
export CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
204204
export PG_CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
205-
205+
206206
export LDFLAGS=$(pg_config --ldfalgs)
207207
export PG_LDFLAGS=$(pg_config --ldfalgs)
208-
208+
209209
make clean
210210
211211
- name: make
212212
run: |-
213213
go version
214-
214+
215215
which pg_config
216216
pg_config --version
217-
217+
218218
export PATH=$(pg_config --bindir):$PATH
219219
export PGXS=$(pg_config --pgxs)
220-
220+
221221
export SERVER_LIB=$(pg_config --includedir)/server
222222
export INTERNAL_LIB=$(pg_config --includedir)/internal
223223
224224
export CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
225225
export PG_CFLAGS="$(pg_config --cflags) -I${SERVER_LIB} -I${INTERNAL_LIB} -g"
226-
226+
227227
export LDFLAGS=$(pg_config --ldfalgs)
228228
export PG_LDFLAGS=$(pg_config --ldfalgs)
229-
229+
230230
make
231231
232232
- name: gzip the steampipe_postgres_fdw.so
@@ -251,7 +251,7 @@ jobs:
251251
- name: Setup GoLang
252252
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
253253
with:
254-
go-version: 1.26
254+
go-version: 1.26.1
255255

256256
- name: Fetching Go Cache Paths
257257
id: go-cache-paths
@@ -336,7 +336,7 @@ jobs:
336336
- name: Setup GoLang
337337
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
338338
with:
339-
go-version: 1.26
339+
go-version: 1.26.1
340340

341341
- name: Fetching Go Cache Paths
342342
id: go-cache-paths

.github/workflows/test.yml

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@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
1818
with:
19-
go-version: 1.26
19+
go-version: 1.26.1
2020

2121
- name: golangci-lint
2222
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6.5.2
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Go
3434
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
3535
with:
36-
go-version: 1.26
36+
go-version: 1.26.1
3737

3838
- name: Checkout Steampipe
3939
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v2.2.1 [2026-03-30]
2+
_Dependencies_
3+
- Update Go version to `1.26.1` to address vulnerability in `1.26`.
4+
15
## v2.2.0 [2026-02-27]
26
_Whats new_
37
- Compiled with Go 1.26.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/turbot/steampipe-postgres-fdw/v2
22

3-
go 1.26.0
3+
go 1.26.1
44

55
require (
66
github.com/dgraph-io/ristretto v0.2.0 // indirect

0 commit comments

Comments
 (0)