Skip to content

Commit

Permalink
修改action相关文件 (#244)
Browse files Browse the repository at this point in the history
* bugfix: githubCI相关文件 #238

* bugfix: 修改action文件 #238

* bugfix: 修改action对应文件 #238
  • Loading branch information
huangpixu authored Jan 14, 2025
1 parent 7337f89 commit 96dbb2e
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/engine_flake8_and_black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
python-version: [3.11]
python-version: [3.11.10]

steps:
- uses: actions/checkout@v2
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black
pip install flake8==6.1.0 black
- name: Lint with flake8
run: |
flake8 bamboo_engine/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/engine_python_package_poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
python_version: "3.11"
python_version: "3.11.10"
poetry_version: "==1.2.1"
ignore_dev_requirements: "yes"
repository_name: "bamboo-engine"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/engine_unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
python-version: [3.11]
python-version: [3.11.10]

steps:
- uses: actions/checkout@v2
Expand All @@ -24,8 +24,8 @@ jobs:
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade coverage[toml] virtualenv tox tox-gh-actions
python -m pip install poetry==1.1.15
python -m pip install urllib3==1.26.9
python -m pip install poetry==2.0.0
python -m pip install urllib3==2.3.0
- name: Run tox targets for ${{ matrix.python-version }}
run: python -m tox
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pipeline_end_to_end_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
DB_PASSWORD: root
strategy:
matrix:
python-version: [3.11]
python-version: [3.11.10]
django-version: [4.2]

steps:
Expand Down Expand Up @@ -42,11 +42,11 @@ jobs:
- name: Set up Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.1.9
poetry-version: 2.0.0

- name: Install urllib3
run: |
python -m pip install urllib3==1.26.9
python -m pip install urllib3==2.3.0
- name: Install dependency
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/runtime_pipeline_end_to_end_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
DB_PASSWORD: root
strategy:
matrix:
python-version: [3.11]
python-version: [3.11.10]
django-version: [4.2]

steps:
Expand Down Expand Up @@ -42,11 +42,11 @@ jobs:
- name: Set up Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.1.9
poetry-version: 2.0.0

- name: Install urllib3
run: |
python -m pip install urllib3==1.26.9
python -m pip install urllib3==2.3.0
- name: Install dependency
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/runtime_pipeline_flake8_and_black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
python-version: [3.11]
python-version: [3.11.10]

steps:
- uses: actions/checkout@v2
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black
pip install flake8==6.1.0 black
- name: Lint with flake8
run: |
cd runtime/bamboo-pipeline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.11.10

- name: Set up Poetry
uses: abatilo/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/runtime_pipeline_unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
DB_PASSWORD: root
strategy:
matrix:
python-version: [3.11]
python-version: [3.11.10]
django-version: [4.2]

steps:
Expand All @@ -32,11 +32,11 @@ jobs:
- name: Set up Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.1.9
poetry-version: 2.0.0

- name: Install urllib3
run: |
python -m pip install urllib3==1.26.9
python -m pip install urllib3==2.3.0
- name: Install Dependencies
run: |
Expand Down

0 comments on commit 96dbb2e

Please sign in to comment.