Skip to content

Commit

Permalink
ci: définit la version de Python avant de mettre à jour pip
Browse files Browse the repository at this point in the history
  • Loading branch information
philippemilink authored and Situphen committed Sep 26, 2024
1 parent 097e50c commit 0d9bc43
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,11 @@ jobs:
name: assets
path: dist

- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: "${{ env.PYTHON_VERSION }}"

- name: Upgrade pip
run: |
pip install --upgrade pip
Expand All @@ -206,11 +211,6 @@ jobs:
restore-keys: |
${{ runner.os }}-node-
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: "${{ env.PYTHON_VERSION }}"

- name: Set up NodeJS ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 0d9bc43

Please sign in to comment.