Skip to content

Commit 6b7ec4f

Browse files
authored
Merge branch 'main' into codex/migrate-to-local-badges-generation
2 parents f23fa84 + cd45a99 commit 6b7ec4f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/pipeline.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
contents: write
3434
pages: write
3535
id-token: write
36+
container:
37+
image: pypy:3.11-slim
3638
steps:
3739
- uses: actions/checkout@v3
3840
- run: |
@@ -71,8 +73,11 @@ jobs:
7173
if: startsWith(github.ref, 'refs/tags/v')
7274
steps:
7375
- uses: actions/checkout@v3
76+
- uses: actions/setup-python@v5
77+
with:
78+
python-version: 'pypy3.11'
7479
- run: |
75-
pip3 install uv
80+
pip install uv
7681
uv version $(python -c "import os; print(os.getenv('GITHUB_REF').lstrip('/').replace('refs/tags/v', ''));")
7782
python -c "import re, pathlib; _p = pathlib.Path('README.md'); _p.write_text(re.sub(r'\#\# Development.*', r'', _p.read_text(), flags=re.I | re.S).strip())"
7883
- uses: docker/setup-buildx-action@v2
@@ -101,7 +106,7 @@ jobs:
101106
needs: [build-and-publish]
102107
runs-on: ubuntu-latest
103108
container:
104-
image: python:3.12-slim
109+
image: pypy:3.11-slim
105110
steps:
106111
- uses: actions/checkout@v3
107112
- run: |

0 commit comments

Comments
 (0)