File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 13
13
jobs :
14
14
build-vsix :
15
15
name : Create VSIX
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-20.04
17
17
steps :
18
18
- name : Checkout
19
19
uses : actions/checkout@v3
25
25
26
26
lint :
27
27
name : Lint
28
- runs-on : ubuntu-latest
28
+ runs-on : ubuntu-20.04
29
29
steps :
30
30
- name : Checkout
31
31
uses : actions/checkout@v3
44
44
strategy :
45
45
fail-fast : false
46
46
matrix :
47
- os : [ubuntu-latest , windows-latest]
47
+ os : [ubuntu-20.04 , windows-latest]
48
48
python : ['3.6']
49
49
50
50
steps :
54
54
path : ${{ env.special-working-directory-relative }}
55
55
56
56
- name : Use Python 3.6
57
- uses : actions/setup-python@v3
57
+ uses : actions/setup-python@v4
58
58
with :
59
59
python-version : ' 3.6'
60
60
80
80
# Now that the bundle is installed to target using python 3.6
81
81
# switch back the python we want to test with
82
82
- name : Use Python ${{ matrix.python }}
83
- uses : actions/setup-python@v3
83
+ uses : actions/setup-python@v4
84
84
with :
85
85
python-version : ${{ matrix.python }}
86
86
Original file line number Diff line number Diff line change 18
18
jobs :
19
19
build-vsix :
20
20
name : Create VSIX
21
- runs-on : ubuntu-latest
21
+ runs-on : ubuntu-20.04
22
22
steps :
23
23
- name : Checkout
24
24
uses : actions/checkout@v3
30
30
31
31
lint :
32
32
name : Lint
33
- runs-on : ubuntu-latest
33
+ runs-on : ubuntu-20.04
34
34
steps :
35
35
- name : Checkout
36
36
uses : actions/checkout@v3
49
49
strategy :
50
50
fail-fast : false
51
51
matrix :
52
- os : [ubuntu-latest , windows-latest]
52
+ os : [ubuntu-20.04 , windows-latest]
53
53
python : ['6']
54
54
55
55
steps :
59
59
path : ${{ env.special-working-directory-relative }}
60
60
61
61
- name : Use Python 3.6
62
- uses : actions/setup-python@v3
62
+ uses : actions/setup-python@v4
63
63
with :
64
64
python-version : ' 3.6'
65
65
85
85
# Now that the bundle is installed to target using python 3.6
86
86
# switch back the python we want to test with
87
87
- name : Use Python ${{ matrix.python }}
88
- uses : actions/setup-python@v3
88
+ uses : actions/setup-python@v4
89
89
with :
90
90
python-version : ${{ matrix.python }}
91
91
You can’t perform that action at this time.
0 commit comments