3636 REGISTRY : ghcr.io
3737 IMAGE_NAME : ${{ github.repository }}
3838 PYTHON_VERSION : 3.13
39+ DEBIAN_VERSION : trixie
3940jobs :
4041 fetch-distroless-versions :
4142 name : Fetch Latest Distroless Versions
@@ -172,9 +173,11 @@ jobs:
172173 echo "🏷️ Tags: ${TAGS}"
173174 export REGISTRY=${REGISTRY@L}
174175 export BUILD_ARGS="--push"
175- export DISTROLESS_VERSION=${{ needs.fetch-distroless-versions.outputs.distroless-version }}
176- export PYTHON_VERSION=${{ env.PYTHON_VERSION }}
177- make docker-build-only agent_version=${AGENT_VERSION}
176+ make docker-build-only \
177+ agent_version=${AGENT_VERSION} \
178+ DISTROLESS_VERSION=${{ needs.fetch-distroless-versions.outputs.distroless-version }} \
179+ PYTHON_VERSION=${{ env.PYTHON_VERSION }} \
180+ DEBIAN_VERSION=${{ env.DEBIAN_VERSION }}
178181 cat metadata.json
179182 echo "digest=$(cat metadata.json | jq -r .\"containerimage.digest\")" >> $GITHUB_OUTPUT
180183 cat $GITHUB_OUTPUT
@@ -204,7 +207,7 @@ jobs:
204207 - name : Set up Go
205208 uses : actions/setup-go@v5
206209 with :
207- go-version : ' 1.25.5 '
210+ go-version : ' 1.25.6 '
208211 cache-dependency-path : operator/go.sum
209212
210213 - name : Log in to the Container registry
@@ -226,8 +229,8 @@ jobs:
226229 id : cached-binaries
227230 uses : actions/cache/restore@v4
228231 with :
229- key : 1.25.5 -${{ runner.os }}-${{ runner.arch }}-bin-${{ hashFiles('operator/deps.mk') }}
230- restore-keys : 1.25.5 -${{ runner.os }}-${{ runner.arch }}-bin-
232+ key : 1.25.6 -${{ runner.os }}-${{ runner.arch }}-bin-${{ hashFiles('operator/deps.mk') }}
233+ restore-keys : 1.25.6 -${{ runner.os }}-${{ runner.arch }}-bin-
231234 path : |
232235 ${{ github.workspace }}/operator/bin
233236 ~/.cache/go-build
@@ -242,7 +245,7 @@ jobs:
242245 if : steps.cached-binaries.outputs.cache-hit != 'true'
243246 uses : actions/cache/save@v4
244247 with :
245- key : 1.25.5 -${{ runner.os }}-${{ runner.arch }}-bin-${{ hashFiles('operator/deps.mk') }}
248+ key : 1.25.6 -${{ runner.os }}-${{ runner.arch }}-bin-${{ hashFiles('operator/deps.mk') }}
246249 path : |
247250 ${{ github.workspace }}/operator/bin
248251 ~/.cache/go-build
0 commit comments