Skip to content

Commit c133e8c

Browse files
committed
ci(bump): override entry point
1 parent 0948ef9 commit c133e8c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/apk-check-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Check the versions
1515
shell: bash
1616
run: |
17-
docker run --pull always -t --user root "leplusorg/${GITHUB_REPOSITORY#*/docker-}:main" sh -c '
17+
docker run --pull always -t --user root --entrypoint /bin/sh "leplusorg/${GITHUB_REPOSITORY#*/docker-}:main" /bin/sh -c '
1818
apk update
1919
if apk -u list | tee -a /dev/stderr | grep -q -e . ; then
2020
exit 1

.github/workflows/pipx-check-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Check the versions
1515
shell: bash
1616
run: |
17-
docker run --pull always -t --user root "leplusorg/${GITHUB_REPOSITORY#*/docker-}:main" sh -c '
17+
docker run --pull always -t --user root --entrypoint /bin/sh "leplusorg/${GITHUB_REPOSITORY#*/docker-}:main" /bin/sh -c '
1818
if pipx upgrade-all --global | tee -a /dev/stderr | grep -q -e . ; then
1919
exit 1
2020
fi

xml/bump-apk-versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if [ -f /.dockerenv ]; then
3131

3232
else
3333

34-
\docker run --pull always --rm -t --user root -v "$(pwd):/opt/bump" "leplusorg/${PWD##*/}:main" /opt/bump/"$(\basename "${0}")"
34+
\docker run --pull always --rm -t --user root -v "$(pwd):/opt/bump" --entrypoint /opt/bump/"$(\basename "${0}")" "leplusorg/${PWD##*/}:main"
3535

3636
./create-bump-prs.sh
3737

0 commit comments

Comments
 (0)