Skip to content

Commit f2fe58b

Browse files
committed
fix: hardcode pip to 25 due to breaking changes with pip-compil
1 parent 9afffb3 commit f2fe58b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/pi_build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,18 @@ jobs:
5252
parent_image_type: ${{ fromJson(needs.pi-matrix.outputs.parent_image_type) }}
5353
steps:
5454
- name: Checkout repository
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v6
5656
with:
5757
token: ${{ secrets.GH_TOKEN }}
5858
repository: '${{ github.repository_owner }}/refinery-${{ matrix.parent_image_type }}-parent-image'
5959
fetch-depth: 0
6060
submodules: 'true'
6161

6262
- name: Set up Python
63-
uses: actions/setup-python@v5
63+
uses: actions/setup-python@v6
6464
with:
6565
python-version: ${{ env.PYTHON_VERSION }}
66+
pip-version: '25'
6667

6768
- name: Install Dependencies
6869
if: matrix.parent_image_type != 'next'
@@ -137,16 +138,17 @@ jobs:
137138
app: ${{ fromJson(needs.pi-matrix.outputs.app) }}
138139
steps:
139140
- name: Checkout repository
140-
uses: actions/checkout@v4
141+
uses: actions/checkout@v6
141142
with:
142143
token: ${{ secrets.GH_TOKEN }}
143144
repository: '${{ github.repository_owner }}/refinery-submodule-parent-images'
144145
fetch-depth: 0
145146

146147
- name: Set up Python
147-
uses: actions/setup-python@v5
148+
uses: actions/setup-python@v6
148149
with:
149150
python-version: ${{ env.PYTHON_VERSION }}
151+
pip-version: '25'
150152

151153
- name: Install Dependencies
152154
run: python -m pip install pip-tools

0 commit comments

Comments
 (0)