Skip to content

Commit b6d3eb0

Browse files
committed
[actions] relax python version requirements
1 parent 1640f96 commit b6d3eb0

2 files changed

Lines changed: 936 additions & 956 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,21 @@ jobs:
1919
id-token: write
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v7
23+
with:
24+
persist-credentials: false
2325
- name: Set up Python
24-
uses: actions/setup-python@v3
26+
uses: actions/setup-python@v6
2527
with:
26-
python-version: "3.x"
28+
python-version: "3.13"
2729

2830
- name: Install pipenv
2931
run: |
3032
python -m pip install --upgrade pipenv
3133
3234
- name: Install dependencies
3335
run: |
34-
pipenv install --deploy --dev
36+
pipenv sync --dev
3537
3638
- name: Build package
3739
run: |

0 commit comments

Comments
 (0)