We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1640f96 commit b6d3eb0Copy full SHA for b6d3eb0
2 files changed
.github/workflows/publish.yml
@@ -19,19 +19,21 @@ jobs:
19
id-token: write
20
21
steps:
22
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v7
23
+ with:
24
+ persist-credentials: false
25
- name: Set up Python
- uses: actions/setup-python@v3
26
+ uses: actions/setup-python@v6
27
with:
- python-version: "3.x"
28
+ python-version: "3.13"
29
30
- name: Install pipenv
31
run: |
32
python -m pip install --upgrade pipenv
33
34
- name: Install dependencies
35
- pipenv install --deploy --dev
36
+ pipenv sync --dev
37
38
- name: Build package
39
0 commit comments