File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ RUN apk -U upgrade \
2121 git=2.49.1-r0 \
2222 gnupg=2.4.7-r0 \
2323 jose=14-r0 \
24- openssl=3.5.1 -r0 \
24+ openssl=3.5.2 -r0 \
2525 py3-pip=25.1.1-r0 \
2626 python3=3.12.11-r0 \
2727 xmlsec=1.3.7-r0 \
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ if [ -f /.dockerenv ]; then
1313
1414 u=$( \a pk -u list | \t r ' \n' ' |' )
1515
16+ \r m -f .bump.csv.bak
1617 \s ed -e :a -e ' /\\$/N; s/\\\n//; ta' Dockerfile | \g rep -o -e ' apk[^\&\;]*add[^\&\;]*' | \g rep -o -e ' [^ ]*=[^ ]*' | while IFS= read -r l; do
17- \r m -f .bump.csv.bak
1818 p=" ${l% =* } "
1919 v1=" ${l#* =} "
2020 v=" $( echo " |${u} " | \g rep -o -e " \|${p} -[^\|]*upgradable from: ${p} -${v1} " || true) "
Original file line number Diff line number Diff line change 11#! /bin/bash
2-
32set -euo pipefail
3+ IFS=$' \n\t '
44
55cd " $( \d irname " ${0} " ) "
66
@@ -9,18 +9,21 @@ if [ -f .bump.csv.bak ]; then
99 >&2 echo " error: git repo contains uncommitted changes"
1010 exit 1
1111 fi
12+ \g it pull
1213 csv=" $( \c at .bump.csv.bak) "
1314 \r m -f .bump.csv.bak
14- while IFS=" , " read -r p v1 v2 l1 l2; do
15+ while IFS=' , ' read -r p v1 v2 l1 l2; do
1516 b=" ${p} -${v2// [\~\:]/ -} "
1617 \g it switch --create " ${b} "
1718 \p erl -i -p -e " s|\Q${l1} \E|${l2} |g" Dockerfile
1819 \g it add Dockerfile
1920 \g it commit -S -m " build(deps): bump ${p} from ${v1} to ${v2} "
20- echo " Please review and push commit in branch \" ${b} \" . Waiting..."
21- while \ g it status | \g rep -Fq " Your branch is ahead " ; do
21+ echo -n " Please review and push commit in branch \" ${b} \" . Waiting..."
22+ while [ " $( git rev-list --count --right-only ' origin...HEAD ' ) " -gt 0 ] ; do
2223 \s leep 1
24+ \e cho -n .
2325 done
26+ \e cho
2427 \g h pr create -f -l build -l dependencies
2528 \g it checkout -
2629 done <<< " ${csv}"
You can’t perform that action at this time.
0 commit comments