Skip to content

Commit e378ada

Browse files
committed
Upgrade to v2 actions
1 parent 0f67aef commit e378ada

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/test-brew.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [macOS]
12-
python: [3.10]
12+
python: ['3.10']
1313
max-parallel: 1
1414
fail-fast: false
1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v2
1717
- name: Setup Python
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v2
1919
with:
2020
python-version: ${{ matrix.python }}
2121
- name: Brew

.github/workflows/test-dashboard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [macOS, ubuntu, windows]
12-
node: [10.x, 11.x, 12.x]
12+
node: ['10.x', '11.x', '12.x']
1313
max-parallel: 4
1414
fail-fast: false
1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v2
1717
- name: Setup Node
18-
uses: actions/setup-node@v1
18+
uses: actions/setup-node@v2
1919
with:
2020
node-version: ${{ matrix.node }}
2121
- name: Install Dependencies

.github/workflows/test-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu]
12-
python: [3.10]
12+
python: ['3.10']
1313
max-parallel: 1
1414
fail-fast: false
1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v2
1717
- name: Setup Python
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v2
1919
with:
2020
python-version: ${{ matrix.python }}
2121
- name: Install dependencies

.github/workflows/test-library.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [macOS, ubuntu, windows]
12-
python: [3.6, 3.7, 3.8, 3.9, 3.10]
12+
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
1313
max-parallel: 4
1414
fail-fast: false
1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v2
1717
- name: Setup Python
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v2
1919
with:
2020
python-version: ${{ matrix.python }}
2121
- name: Install dependencies

0 commit comments

Comments
 (0)