Skip to content

Commit 345a852

Browse files
committed
Bump postgres base image alpine version
Our postgres version was stuck on old version cause we were pinned to old alpine version. Bump alpine to get latest postgres version.
1 parent 87d8fa8 commit 345a852

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ concurrency:
4444

4545
env:
4646
ORG: timescaledev #timescaledev
47-
TS_VERSION: ${{ github.event.inputs.version || '2.24.0' }}
47+
TS_VERSION: ${{ github.event.inputs.version || '2.26.0' }}
4848
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
4949

5050
jobs:

Makefile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ PG_VER_NUMBER=$(shell echo $(PG_VER) | cut -c3-)
77
PG_MAJOR_VERSION=$(shell echo $(PG_VER_NUMBER) | cut -d. -f1)
88
ifeq ($(shell test $(PG_MAJOR_VERSION) -ge 18; echo $$?),0)
99
ALPINE_VERSION=3.23
10-
CLANG_VERSION=19
1110
else ifeq ($(shell test $(PG_MAJOR_VERSION) -ge 16; echo $$?),0)
12-
ALPINE_VERSION=3.21
13-
CLANG_VERSION=19
11+
ALPINE_VERSION=3.23
1412
else
15-
ALPINE_VERSION=3.20
16-
CLANG_VERSION=15
13+
ALPINE_VERSION=3.22
1714
endif
15+
CLANG_VERSION=19
1816

1917
TS_VERSION=main
2018
PREV_TS_VERSION=$(shell wget --quiet -O - https://raw.githubusercontent.com/timescale/timescaledb/${TS_VERSION}/version.config | grep -P "(previous_version|update_from_version)" | sed -e 's!^[a-z_]\+_version = !!')

0 commit comments

Comments
 (0)