Spaces:
Running
Running
github action maintenance
Browse files
.github/workflows/ci-build.yml
CHANGED
@@ -15,9 +15,9 @@ jobs:
|
|
15 |
python-version: [ 3.8, 3.9, '3.10', '3.11' ]
|
16 |
|
17 |
steps:
|
18 |
-
- uses: actions/checkout@
|
19 |
- name: Set up Python ${{ matrix.python-version }}
|
20 |
-
uses: actions/setup-python@
|
21 |
with:
|
22 |
python-version: ${{ matrix.python-version }}
|
23 |
cache: 'pip'
|
|
|
15 |
python-version: [ 3.8, 3.9, '3.10', '3.11' ]
|
16 |
|
17 |
steps:
|
18 |
+
- uses: actions/checkout@v4
|
19 |
- name: Set up Python ${{ matrix.python-version }}
|
20 |
+
uses: actions/setup-python@v5
|
21 |
with:
|
22 |
python-version: ${{ matrix.python-version }}
|
23 |
cache: 'pip'
|
.github/workflows/ci-release.yml
CHANGED
@@ -14,9 +14,9 @@ jobs:
|
|
14 |
build:
|
15 |
runs-on: ubuntu-latest
|
16 |
steps:
|
17 |
-
- uses: actions/checkout@
|
18 |
- name: Set up Python 3.9
|
19 |
-
uses: actions/setup-python@
|
20 |
with:
|
21 |
python-version: "3.9"
|
22 |
cache: 'pip'
|
|
|
14 |
build:
|
15 |
runs-on: ubuntu-latest
|
16 |
steps:
|
17 |
+
- uses: actions/checkout@v4
|
18 |
- name: Set up Python 3.9
|
19 |
+
uses: actions/setup-python@v5
|
20 |
with:
|
21 |
python-version: "3.9"
|
22 |
cache: 'pip'
|