Skip to content

Commit cf41511

Browse files
committed
Do not specify python versions in CI
1 parent e610be8 commit cf41511

File tree

3 files changed

+9
-15
lines changed

3 files changed

+9
-15
lines changed

.github/workflows/addoncheck-matrix.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
12-
- name: Set up Python 3.10.9
13-
uses: actions/setup-python@v1
14-
with:
15-
python-version: 3.10.9
11+
- uses: actions/checkout@v3
12+
- name: Set up Python
13+
uses: actions/setup-python@v4
1614
- name: Install dependencies
1715
run: |
1816
python -m pip install --upgrade pip

.github/workflows/addoncheck-nexus.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
12-
- name: Set up Python 3.10.9
13-
uses: actions/setup-python@v1
14-
with:
15-
python-version: 3.10.9
11+
- uses: actions/checkout@v3
12+
- name: Set up Python
13+
uses: actions/setup-python@v4
1614
- name: Install dependencies
1715
run: |
1816
python -m pip install --upgrade pip

.github/workflows/flake8.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
12-
- name: Set up Python 3.10.9
13-
uses: actions/setup-python@v1
14-
with:
15-
python-version: 3.10.9
11+
- uses: actions/checkout@v3
12+
- name: Set up Python
13+
uses: actions/setup-python@v4
1614
- name: Install dependencies
1715
run: |
1816
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)