Skip to content

Commit 4cba758

Browse files
fix: resolve git merge conflicts in dependabot.yml and publish.yml
1 parent 607c451 commit 4cba758

2 files changed

Lines changed: 3 additions & 24 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
version: 2
22
updates:
3-
<<<<<<< HEAD
43
- package-ecosystem: "pip"
54
directory: "/"
65
schedule:
@@ -20,15 +19,3 @@ updates:
2019
open-pull-requests-limit: 5
2120
labels:
2221
- "ci"
23-
=======
24-
- package-ecosystem: pip
25-
directory: "/"
26-
schedule:
27-
interval: weekly
28-
open-pull-requests-limit: 5
29-
- package-ecosystem: github-actions
30-
directory: "/"
31-
schedule:
32-
interval: weekly
33-
open-pull-requests-limit: 3
34-
>>>>>>> 6a1c694d4432dfdcf5c2689e7113670a0a2c2e6b

.github/workflows/publish.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
id-token: write
2222

2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v4
2525
with:
2626
persist-credentials: false
2727

28-
- name: Set up Python 3.11
29-
uses: actions/setup-python@v6
28+
- name: Set up Python 3.12
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: "3.12"
3232

@@ -46,18 +46,10 @@ jobs:
4646

4747
- name: Publish to TestPyPI
4848
if: ${{ inputs.pypi_target == 'testpypi' }}
49-
<<<<<<< HEAD
5049
uses: pypa/gh-action-pypi-publish@release/v1
5150
with:
5251
repository-url: https://test.pypi.org/legacy/
5352

5453
- name: Publish to PyPI
5554
if: ${{ inputs.pypi_target == 'pypi' || github.event_name == 'release' }}
5655
uses: pypa/gh-action-pypi-publish@release/v1
57-
=======
58-
env:
59-
TWINE_USERNAME: __token__
60-
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
61-
run: |
62-
twine upload --repository testpypi dist/* --verbose
63-
>>>>>>> 6a1c694d4432dfdcf5c2689e7113670a0a2c2e6b

0 commit comments

Comments
 (0)