Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修改action相关文件 #244

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading