Skip to content

Commit

Permalink
CI: Use most recent versions of pip and setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 23, 2023
1 parent 8d56fd5 commit 7a615f8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test-go-gin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ jobs:

- name: Install utilities
run: |
pip install -r requirements.txt
pip install --upgrade 'pip>=23.3' 'setuptools>=64'
pip install --requirement requirements.txt
- name: Validate go-gin
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-java-spark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:

- name: Install utilities
run: |
pip install -r requirements.txt
pip install --upgrade 'pip>=23.3' 'setuptools>=64'
pip install --requirement requirements.txt
- name: Set up Java
uses: actions/setup-java@v3
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-java-spring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:

- name: Install utilities
run: |
pip install -r requirements.txt
pip install --upgrade 'pip>=23.3' 'setuptools>=64'
pip install --requirement requirements.txt
- name: Set up Java
uses: actions/setup-java@v3
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-nodejs-express.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:

- name: Install utilities
run: |
pip install -r requirements.txt
pip install --upgrade 'pip>=23.3' 'setuptools>=64'
pip install --requirement requirements.txt
# https://github.com/actions/setup-node
- name: Set up Node.js
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-php-slim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:

- name: Install utilities
run: |
pip install -r requirements.txt
pip install --upgrade 'pip>=23.3' 'setuptools>=64'
pip install --requirement requirements.txt
# https://github.com/marketplace/actions/setup-php-action
- name: Set up PHP
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-python-flask.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ jobs:
- name: Install utilities
run: |
pip install -r requirements.txt
pip install --upgrade 'pip>=23.3' 'setuptools>=64'
pip install --requirement requirements.txt
- name: Validate python-flask
run: |
Expand Down

0 comments on commit 7a615f8

Please sign in to comment.