Skip to content

Commit 9500387

Browse files
committed
ci(gh-actions): fix regex
1 parent 8a84f38 commit 9500387

File tree

5 files changed

+3
-75
lines changed

5 files changed

+3
-75
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
run: |
1919
set -euo pipefail
2020
IFS=$'\n\t'
21-
docker run --pull always -t --user root --entrypoint /bin/sh "leplusorg/${GITHUB_REPOSITORY#*/docker-}:main" -c 'if pip3 list --outdated | tee -a /dev/stderr | grep -q -e "^pipx "; then exit 1; fi'
21+
docker run --pull always -t --user root --entrypoint /bin/sh "leplusorg/${GITHUB_REPOSITORY#*/docker-}:main" -c 'if pip list --outdated | tee -a /dev/stderr | grep -q -e "^pipx "; then exit 1; fi'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
run: |
1818
set -euo pipefail
1919
IFS=$'\n\t'
20-
docker run --pull always -t --user root --entrypoint /bin/sh "leplusorg/${GITHUB_REPOSITORY#*/docker-}:main" -c 'if sudo pipx upgrade-all --global | tee -a /dev/stderr | grep -q -e .; then exit 1; fi'
20+
docker run --pull always -t --user root --entrypoint /bin/sh "leplusorg/${GITHUB_REPOSITORY#*/docker-}:main" -c 'if sudo pipx upgrade-all --global | tee -a /dev/stderr | grep -q -e "^upgraded "; then exit 1; fi'

aws-cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN dnf upgrade -y \
4343

4444
# FIXME @TL workaround until Amazon Linux gets a pipx package
4545
# FIXME @TL --break-system-packages not supported until Python 3.11.
46-
RUN pip3 install --no-cache-dir --upgrade pipx==1.7.1
46+
RUN pip install --no-cache-dir --upgrade pipx==1.7.1
4747

4848
RUN pipx ensurepath --global \
4949
&& pipx install --global \

aws-cli/bump-apk-versions.sh

Lines changed: 0 additions & 38 deletions
This file was deleted.

aws-cli/create-bump-prs.sh

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)