Skip to content

Commit a95ff06

Browse files
authored
Increase checkout/setup actions version (#37)
* Increase checkout/setup actions version * Remove test exclusion in test.yml
1 parent 2200316 commit a95ff06

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/lint.yml

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

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Set up Python
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: 3.8
1919
- name: Install dependencies

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
# fetch all commits and tags so versioneer works
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 0
2020

2121
- name: Set up Python
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v4
2323
with:
2424
python-version: 3.8
2525

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,13 @@ jobs:
1313
matrix:
1414
python-version: ["3.7", "3.8", "3.9", "3.10"]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
exclude:
17-
- python-version: "3.10" # as of 2022-02-24, no wheels for py3.10 MacOS x86_64
18-
os: macos-latest
1916

2017
runs-on: ${{ matrix.os }}
2118

2219
steps:
23-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2421
- name: Set up Python
25-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v4
2623
with:
2724
python-version: ${{ matrix.python-version }}
2825
- name: Install dependencies

0 commit comments

Comments
 (0)