Skip to content

Commit

Permalink
Keep pip version pinned to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinvanrijn committed Jan 12, 2025
1 parent c5a7905 commit b3eefcb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,11 @@ jobs:
- name: Build demjson
shell: bash
run: |
curl -sSo pip-22.3.1.pyz https://bootstrap.pypa.io/pip/zipapp/pip-22.3.1.pyz
python pip-22.3.1.pyz install setuptools==57.5.0
python pip-22.3.1.pyz install git+https://github.com/EIGHTFINITE/demjson.git@master
rm pip-22.3.1.pyz
curl -sSo pip.pyz https://bootstrap.pypa.io/pip/pip.pyz
python pip.pyz -V
python pip.pyz install setuptools==57.5.0
python pip.pyz install git+https://github.com/EIGHTFINITE/demjson.git@master
rm pip.pyz
- uses: actions/[email protected]
with:
ref: artifacts
Expand Down Expand Up @@ -346,10 +347,11 @@ jobs:
- name: Build demjson
shell: bash
run: |
curl -sSo pip-22.3.1.pyz https://bootstrap.pypa.io/pip/zipapp/pip-22.3.1.pyz
python pip-22.3.1.pyz install setuptools==57.5.0
python pip-22.3.1.pyz install git+https://github.com/EIGHTFINITE/demjson.git@master
rm pip-22.3.1.pyz
curl -sSo pip.pyz https://bootstrap.pypa.io/pip/pip.pyz
python pip.pyz -V
python pip.pyz install setuptools==57.5.0
python pip.pyz install git+https://github.com/EIGHTFINITE/demjson.git@master
rm pip.pyz
- uses: actions/[email protected]
with:
ref: latest
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/jsonlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ jobs:
- name: Build demjson
shell: bash
run: |
curl -sSo pip-22.3.1.pyz https://bootstrap.pypa.io/pip/zipapp/pip-22.3.1.pyz
python pip-22.3.1.pyz install setuptools==57.5.0
python pip-22.3.1.pyz install git+https://github.com/EIGHTFINITE/demjson.git@master
rm pip-22.3.1.pyz
curl -sSo pip.pyz https://bootstrap.pypa.io/pip/pip.pyz
python pip.pyz -V
python pip.pyz install setuptools==57.5.0
python pip.pyz install git+https://github.com/EIGHTFINITE/demjson.git@master
rm pip.pyz
- uses: actions/[email protected]
with:
path: DownloadItYourself
Expand Down

0 comments on commit b3eefcb

Please sign in to comment.