Skip to content

Commit

Permalink
chore(deps): bump actions/setup-python from 4.7.1 to 5.0.0 (#610)
Browse files Browse the repository at this point in the history
* chore(deps): bump actions/setup-python from 4.7.1 to 5.0.0

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.7.1 to 5.0.0.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v4.7.1...v5.0.0)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* ci: update python version and required libs

Signed-off-by: iromli <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: iromli <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: iromli <[email protected]>
  • Loading branch information
dependabot[bot] and iromli authored May 31, 2024
1 parent b3fca62 commit 6d3780c
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 37 deletions.
8 changes: 4 additions & 4 deletions .github/docker/central_docker_triggerdevbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@master

- name: Set up Python 3.7
uses: actions/setup-python@v2.3.1
- name: Set up Python 3.9
uses: actions/setup-python@v5.0.0
with:
python-version: 3.7
python-version: 3.9

- name: Install dependencies
run: |
Expand Down Expand Up @@ -65,4 +65,4 @@ jobs:
bot
assignees: moabu
reviewers: moabu
delete-branch: true
delete-branch: true
6 changes: 3 additions & 3 deletions .github/workflows/awseks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
python-version: [3.9]

steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -40,7 +40,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install build-essential
sudo pip3 install shiv
sudo pip3 install -U shiv wheel setuptools
mkdir /home/runner/work/test/
cp -r ./* /home/runner/work/test/
cd /home/runner/work/test/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/couchbase_microk8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.7
uses: actions/setup-python@v4.7.1
- name: Set up Python 3.9
uses: actions/setup-python@v5.0.0
with:
python-version: 3.7
python-version: 3.9

- name: Install dependencies
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
sudo pip3 install pyOpenSSL --upgrade
sudo pip3 install requests --upgrade
sudo apt-get install build-essential
sudo pip3 install shiv
sudo pip3 install -U shiv wheel setuptools
mkdir /home/runner/work/test
cp -r ./* /home/runner/work/test/
cd /home/runner/work/test/
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/googlegke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
python-version: [3.9]

steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -39,7 +39,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install build-essential
sudo pip3 install shiv
sudo pip3 install -U shiv wheel setuptools
mkdir /home/runner/work/test/
cp -r ./* /home/runner/work/test/
cd /home/runner/work/test/
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
# curl -sL https://istio.io/downloadIstioctl | sh -
# export PATH=$PATH:$HOME/.istioctl/bin
# istioctl operator init

- name: Create settings.json
id: test1_settings
run: |
Expand Down Expand Up @@ -273,4 +273,4 @@ jobs:
sudo ./pygluu-kubernetes.pyz uninstall-couchbase || echo "pygluu failed"
sudo ./pygluu-kubernetes.pyz helm-uninstall || echo "pygluu failed"
GKE_NAME=$(cat gke_cluster_name || echo "noname")
sudo gcloud container clusters delete $GKE_NAME --zone ${{ secrets.google_region }}-a --quiet
sudo gcloud container clusters delete $GKE_NAME --zone ${{ secrets.google_region }}-a --quiet
8 changes: 4 additions & 4 deletions .github/workflows/ldap_microk8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
strategy:
max-parallel: 6
matrix:
python-version: [3.7]
gluu-version: ['"4.5.0_dev"']
python-version: [3.9]
gluu-version: ['"4.5.4_dev"']
test-cases: ["install", "helm-install"]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -50,7 +50,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install build-essential
sudo pip3 install shiv
sudo pip3 install -U shiv wheel setuptools
mkdir /home/runner/work/test
cp -r ./* /home/runner/work/test/
cd /home/runner/work/test/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/microk8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Build Zipapp
run: |
sudo apt-get install build-essential
sudo pip3 install shiv
sudo pip3 install -U shiv wheel setuptools
mkdir /home/runner/work/test
cp -r ./* /home/runner/work/test/
cd /home/runner/work/test/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pgsql_microk8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
strategy:
max-parallel: 6
matrix:
python-version: [3.7]
gluu-version: ['"4.5.0_dev"']
python-version: [3.9]
gluu-version: ['"4.5.4_dev"']
test-cases: ["install", "helm-install"]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -50,7 +50,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install build-essential
sudo pip3 install shiv
sudo pip3 install -U shiv wheel setuptools
mkdir /home/runner/work/test
cp -r ./* /home/runner/work/test/
cd /home/runner/work/test/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sql_microk8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
strategy:
max-parallel: 6
matrix:
python-version: [3.7]
gluu-version: ['"4.5.0_dev"']
python-version: [3.9]
gluu-version: ['"4.5.4_dev"']
test-cases: ["install", "helm-install"]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -50,7 +50,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install build-essential
sudo pip3 install shiv
sudo pip3 install -U shiv wheel setuptools
mkdir /home/runner/work/test
cp -r ./* /home/runner/work/test/
cd /home/runner/work/test/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testcases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
python-version: [3.9]

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/updateimages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
python-version: [3.9]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -55,4 +55,4 @@ jobs:

- name: Check output
run: |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
6 changes: 3 additions & 3 deletions .github/workflows/uploadrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
python-version: [3.7]
python-version: [3.9]
include:
- os: ubuntu-latest
artifact_name: pygluu-kubernetes.pyz
Expand All @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -47,7 +47,7 @@ jobs:
run: |
sudo apt-get update || brew install jq
sudo apt-get install build-essential || echo "Maybe im on macor OS"
pip3 install shiv
pip3 install -U shiv wheel setuptools
make zipapp
- name: Get project
Expand Down

0 comments on commit 6d3780c

Please sign in to comment.