Skip to content

Commit 135ebf5

Browse files
committed
Update versions for actions
Update actions versions after setting Ubuntu version to be compatible with Python 3.7
1 parent 354b162 commit 135ebf5

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ on:
1111

1212
jobs:
1313
ci:
14-
runs-on: ubuntu-22.04
14+
# Using 22.04 to be compatiable with Python 3.7 until it is deprecated
15+
runs-on: ubuntu-22.04
1516
strategy:
1617
matrix:
1718
python-version: [ 3.7, 3.8, 3.9]
1819

1920
steps:
20-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2122
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v4
2324
with:
2425
python-version: ${{ matrix.python-version }}
2526

@@ -53,9 +54,9 @@ jobs:
5354
needs: ci
5455
runs-on: ubuntu-latest
5556
steps:
56-
- uses: actions/checkout@v2
57+
- uses: actions/checkout@v4
5758
- name: Set up Python 3.9
58-
uses: actions/setup-python@v2
59+
uses: actions/setup-python@v4
5960
with:
6061
python-version: 3.9
6162

.github/workflows/pullRequest.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ on:
1111

1212
jobs:
1313
ci:
14+
# Using 22.04 to be compatiable with Python 3.7 until it is deprecated
1415
runs-on: ubuntu-22.04
1516
strategy:
1617
matrix:
1718
python-version: [ 3.7, 3.8, 3.9]
1819

1920
steps:
20-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2122
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v4
2324
with:
2425
python-version: ${{ matrix.python-version }}
2526

0 commit comments

Comments
 (0)