Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/update-deb-package-non-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: |
BODY_FILE=$(mktemp)
printf "Bumping non-snapshot packages to latest stable version\n" >> $BODY_FILE
if ! OUTPUT=$(gh pr create -B main -H update-non-snapshots -t "Bumping packages to latest stable versions" --body-file "$BODY_FILE" 2>&1) ; then
if ! OUTPUT=$(gh pr create -B main -H update-non-snapshots -t "Bumping non-snapshot packages to latest stable versions" --body-file "$BODY_FILE" 2>&1) ; then
echo $OUTPUT
if [[ "${OUTPUT}" =~ "already exists" ]]; then
echo "PR already exists and it was updated. Ending successfully";
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/update-deb-package-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ jobs:
- name: Update snapshots
run: ./knife github-update-snapshots

- name: Set up QEMU
if: env.DISTROLESS_DIFF
uses: docker/setup-qemu-action@v4

- name: Update ldconfig
if: env.DISTROLESS_DIFF
run: bazel run //python3:update_ldconfig

- name: Run update sboms script
if: env.DISTROLESS_DIFF
run: |
Expand Down
Loading