Skip to content

Commit 69ceb5d

Browse files
Merge pull request #742 from haoyu-haoyu/fix/ci-merge-conflicts
fix: resolve merge conflict markers in CI workflows and upgrade Actions
2 parents 9545ef2 + d9f9b2c commit 69ceb5d

File tree

3 files changed

+6
-21
lines changed

3 files changed

+6
-21
lines changed

.github/workflows/black.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: actions/setup-python@v2
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-python@v5
1111
- uses: psf/black@stable

.github/workflows/python-app.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Set up Python 3.13
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
22-
<<<<<<< HEAD
23-
python-version: 3.10
24-
- name: Install Poetry
25-
env:
26-
POETRY_VERSION: 2.0.0
27-
=======
2822
python-version: 3.13
2923
- name: Install Poetry
3024
env:
3125
POETRY_VERSION: 2.1.2
32-
>>>>>>> origin
3326
run: |
3427
curl -sSL https://install.python-poetry.org | python - -y &&\
3528
poetry config virtualenvs.create false

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,17 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
<<<<<<< HEAD
13-
python-version: ["3.10", "3.11", "3.12"]
14-
=======
1512
python-version: ["3.10", "3.11", "3.12", "3.13"]
16-
>>>>>>> origin
1713

1814
steps:
19-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
2016
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
2218
with:
2319
python-version: ${{ matrix.python-version }}
2420
- name: Install Poetry
2521
env:
26-
<<<<<<< HEAD
27-
POETRY_VERSION: 2.0.0
28-
=======
2922
POETRY_VERSION: 2.1.2
30-
>>>>>>> origin
3123
run: |
3224
curl -sSL https://install.python-poetry.org | python - -y &&\
3325
poetry config virtualenvs.create false

0 commit comments

Comments
 (0)