File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 3
3
workflow_dispatch :
4
4
inputs :
5
5
test_path :
6
- description : ' Test path to be tested: e.g. integration/ cli'
6
+ description : " The path from 'test/integration' to the target to be tested, e.g. ' cli'"
7
7
required : false
8
8
sha :
9
9
description : ' The hash value of the commit.'
30
30
31
31
# Check out merge commit
32
32
- name : Checkout PR
33
- uses : actions/checkout@v3
33
+ uses : actions/checkout@v4
34
34
with :
35
35
ref : ${{ inputs.sha }}
36
36
@@ -56,13 +56,12 @@ jobs:
56
56
owner : ${{ github.event.repository.owner.login }}
57
57
repo : ${{ github.event.repository.name }}
58
58
pr_num : ${{ fromJSON(inputs.pull_request_number) }}
59
+ env :
60
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
59
61
60
62
- name : Update system packages
61
63
run : sudo apt-get update -y
62
64
63
- - name : Install system deps
64
- run : sudo apt-get install -y build-essential
65
-
66
65
- name : Setup Python
67
66
uses : actions/setup-python@v4
68
67
with :
@@ -124,7 +123,7 @@ jobs:
124
123
125
124
# Check out merge commit
126
125
- name : Checkout PR
127
- uses : actions/checkout@v3
126
+ uses : actions/checkout@v4
128
127
with :
129
128
ref : ${{ inputs.sha }}
130
129
@@ -196,4 +195,4 @@ jobs:
196
195
status: 'completed',
197
196
conclusion: process.env.conclusion
198
197
});
199
- return result;
198
+ return result;
You can’t perform that action at this time.
0 commit comments