Skip to content

Commit 99cc0c4

Browse files
committed
Use current workflow and Python versions
1 parent 8c49992 commit 99cc0c4

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/buildandtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@master
2323

2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v2
25+
uses: actions/setup-python@v4
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828

.github/workflows/compatibility.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
cd age
3939
go build -o . filippo.io/age/cmd/...
4040
41-
- name: Set up Python 3.9
42-
uses: actions/setup-python@v2
41+
- name: Set up Python 3.10
42+
uses: actions/setup-python@v4
4343
with:
44-
python-version: 3.9
44+
python-version: 3.10
4545

4646
- name: Install pyage
4747
run: |

.github/workflows/publish-testpypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@master
16-
- name: Set up Python 3.9
17-
uses: actions/setup-python@v2
16+
- name: Set up Python 3.10
17+
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.9
19+
python-version: 3.10
2020

2121
- name: Install pyage
2222
run: |

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@master
15-
- name: Set up Python 3.8
16-
uses: actions/setup-python@v2
15+
- name: Set up Python 3.10
16+
uses: actions/setup-python@v4
1717
with:
18-
python-version: 3.8
18+
python-version: 3.10
1919

2020
- name: Install pyage
2121
run: |

0 commit comments

Comments
 (0)