Skip to content

Commit a343fec

Browse files
authored
ci/fix: dont care python micro version (#62)
1 parent 1a087cd commit a343fec

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
uses: actions/checkout@v2
2323

2424
- name: Set up Python 3.10
25-
uses: actions/setup-python@v1
25+
uses: actions/setup-python@v5
2626
with:
27-
python-version: 3.10.16
27+
python-version: '3.10'
2828

2929
- name: Update Submodules
3030
run: git submodule update --init --recursive

.github/workflows/check_format.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Checkout Code
1818
uses: actions/checkout@v2
1919
- name: Set up Python 3.8
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: 3.8
2323
- name: pip install formatters

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Set up Python
14-
uses: actions/setup-python@v1
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: '3.x'
1717
- name: Install publishing dependencies

0 commit comments

Comments
 (0)