Skip to content

Commit 5e7c66d

Browse files
committed
2 parents 7b9ae47 + fb9cc04 commit 5e7c66d

File tree

4 files changed

+21
-12
lines changed

4 files changed

+21
-12
lines changed

.github/workflows/github-docker-registry-push.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,16 @@ jobs:
2222
steps:
2323
- name: Check if PR is from a fork
2424
# This step checks if the pull request is from a fork
25-
run: echo "IS_FORK=$(if [ '${{ github.event.pull_request.head.repo.full_name }}' != '${{ github.repository }}' ]; then echo 'true'; else echo 'false'; fi)" >> $GITHUB_ENV
25+
run: |
26+
if [ "${{ github.event_name }}" = "pull_request" ]; then
27+
if [ '${{ github.event.pull_request.head.repo.full_name }}' != '${{ github.repository }}' ]; then
28+
echo "IS_FORK=true" >> $GITHUB_ENV
29+
else
30+
echo "IS_FORK=false" >> $GITHUB_ENV
31+
fi
32+
else
33+
echo "IS_FORK=false" >> $GITHUB_ENV
34+
fi
2635
2736
- name: Checkout
2837
# This step checks out the repository

dockerfiles/agent-discovery/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.
22

3-
# We start from the Debian 'bookworm' image dated 2023-11-20.
4-
FROM debian:bookworm-20250908-slim as prepare-stage
3+
# We start from the Debian 'trixie' image.
4+
FROM debian:trixie-20250610-slim as prepare-stage
55

66
# Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
77
COPY *sh /usr/local/bin/

dockerfiles/sidekick/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.
22

3-
# We start from the Debian 'bookworm' image dated 2023-11-20.
4-
FROM debian:bookworm-20250929 as prepare-stage
3+
# We start from the Debian 'trixie' image.
4+
FROM debian:trixie-20250929 as prepare-stage
55

66
# Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
77
COPY *sh /usr/local/bin/

updatecli/updatecli.d/debian.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ scms:
1313
branch: "{{ .github.branch }}"
1414

1515
sources:
16-
bookwormLatestVersion:
16+
trixieLatestVersion:
1717
kind: dockerimage
18-
name: "Get the latest Debian Bookworm Linux version"
18+
name: "Get the latest Debian Trixie Linux version"
1919
spec:
2020
image: "debian"
21-
tagfilter: "bookworm-*"
21+
tagfilter: "trixie-*"
2222
versionfilter:
2323
kind: regex
2424
pattern: >-
25-
bookworm-\d+$
25+
trixie-\d+$
2626
2727
targets:
2828
debian:
@@ -34,14 +34,14 @@ targets:
3434
instruction:
3535
keyword: FROM
3636
matcher: debian
37-
sourceid: bookwormLatestVersion
37+
sourceid: trixieLatestVersion
3838

3939
actions:
4040
default:
4141
kind: github/pullrequest
4242
scmid: default
43-
title: Bump Debian Bookworm Linux version to {{ source "bookwormLatestVersion" }}
43+
title: Bump Debian Trixie Linux version to {{ source "trixieLatestVersion" }}
4444
spec:
4545
labels:
4646
- dependencies
47-
- debian-bookworm
47+
- debian-trixie

0 commit comments

Comments
 (0)