@@ -4,7 +4,10 @@ on: push
44
55env :
66 # renovate datasource=github-releases depName=timescale/timescaledb
7- TIMESCALE_VERSION : 2.21.3
7+ TIMESCALE_VERSION : 2.22.1
8+
9+ # renovate datasource=github-releases depName=timescale/timescaledb-toolkit
10+ TIMESCALE_TOOLKIT_VERSION : 1.21.0
811
912jobs :
1013 build :
4750 echo "minor=$(cut -d. -f-2 <<<"$TIMESCALE_VERSION")"
4851 echo "major=$(cut -d. -f1 <<<"$TIMESCALE_VERSION")"
4952 } >> $GITHUB_OUTPUT
53+ - name : Get Timescale Toolkit version
54+ id : timescale_toolkit
55+ run : |
56+ {
57+ echo "version=$TIMESCALE_TOOLKIT_VERSION"
58+ echo "minor=$(cut -d. -f-2 <<<"$TIMESCALE_TOOLKIT_VERSION")"
59+ echo "major=$(cut -d. -f1 <<<"$TIMESCALE_TOOLKIT_VERSION")"
60+ } >> $GITHUB_OUTPUT
5061 - name : Docker meta
5162 id : meta
5263 uses : docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
@@ -78,13 +89,14 @@ jobs:
7889 context : .
7990 pull : true
8091 push : ${{ github.ref_name == 'main' }}
81- platforms : linux/amd64,linux/arm64/v8
92+ platforms : linux/amd64
8293 tags : ${{ steps.meta.outputs.tags }}
8394 labels : ${{ steps.meta.outputs.labels }}
8495 build-args : |
8596 POSTGRES_VERSION=${{ matrix.postgres_version }}
8697 CLOUDNATIVEPG_VERSION=${{ steps.cnpg.outputs.version }}
8798 TIMESCALE_VERSION=${{ steps.timescale.outputs.version }}
99+ TIMESCALE_TOOLKIT_VERSION=${{ steps.timescale_toolkit.outputs.version }}
88100 cache-from : type=gha
89101 cache-to : type=gha,mode=max
90102
0 commit comments