Skip to content

Commit b158ef1

Browse files
committed
Test fix for Github Action
1 parent debd20c commit b158ef1

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/python-test-dev.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
with:
1616
# Disabling shallow clone is recommended for improving relevancy of reporting
1717
fetch-depth: 0
1818
- name: Set up Python
19-
uses: actions/setup-python@v2
20-
with:
21-
python-version: '3.6'
19+
uses: actions/setup-python@v4
2220
- name: Install dependencies
2321
run: |
2422
cd howlongtobeatpy

.github/workflows/python-test-release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,12 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
with:
2424
# Disabling shallow clone is recommended for improving relevancy of reporting
2525
fetch-depth: 0
2626
- name: Set up Python
27-
uses: actions/setup-python@v2
28-
with:
29-
python-version: '3.6'
27+
uses: actions/setup-python@v4
3028
- name: Install dependencies
3129
run: |
3230
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)