Skip to content

Commit 1b07b70

Browse files
committed
Fixing pip commands to be pipx
1 parent d1ab099 commit 1b07b70

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/actions/build-test/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,13 @@ runs:
8585
- name: Squash image layers to save disk space
8686
shell: bash
8787
run: |
88-
python3 -m pipx install docker-squash
88+
python3 -m pipx install --force docker-squash
8989
docker-squash ${{ inputs.namespace }}/${{ inputs.final_image }}:test
9090
9191
- name: Run tests against the container
9292
shell: bash
9393
run: |
94-
python3 -m pip install --upgrade pip
95-
python3 -m pip install --upgrade "tox>=4.0.0"
94+
python3 -m pipx install --force "tox>=4.0.0"
9695
tox -e test-image -- --container-engine docker --image-name ${{ inputs.namespace }}/${{ inputs.final_image }}:test
9796
9897
- name: Push the built image to ${{ inputs.registry }} by digest for ${{ matrix.platform }}

.github/workflows/tox.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
include:
39-
- builder: ubuntu-24.04
40-
# devtools-multiarch-builder
39+
- builder: devtools-multiarch-builder
4140
platform: linux/amd64
4241
name: amd64
4342
- builder: devtools-arm64-runner

0 commit comments

Comments
 (0)