File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ async function checkWorkflows(
45
45
} ) ;
46
46
47
47
for ( const e of dir ) {
48
- if ( e . isFile ( ) ) {
48
+ if ( e . isFile ( ) && extname ( e . name ) === ".yml" ) {
49
49
const workflowFilePath = join ( folder , e . name ) ;
50
50
const workflowId = basename ( e . name , extname ( e . name ) ) ;
51
51
const workflowProperties : WorkflowProperties = require ( join (
@@ -58,7 +58,7 @@ async function checkWorkflows(
58
58
const isPartnerWorkflow = workflowProperties . creator ? partnersSet . has ( workflowProperties . creator . toLowerCase ( ) ) : false ;
59
59
60
60
const enabled =
61
- ! isPartnerWorkflow &&
61
+ ! isPartnerWorkflow &&
62
62
( await checkWorkflow ( workflowFilePath , enabledActions ) ) ;
63
63
64
64
const workflowDesc : WorkflowDesc = {
@@ -104,7 +104,8 @@ async function checkWorkflow(
104
104
if ( ! ! step . uses ) {
105
105
// Check if allowed action
106
106
const [ actionName , _ ] = step . uses . split ( "@" ) ;
107
- if ( ! enabledActionsSet . has ( actionName . toLowerCase ( ) ) ) {
107
+ const actionNwo = actionName . split ( "/" ) . slice ( 0 , 2 ) . join ( "/" ) ;
108
+ if ( ! enabledActionsSet . has ( actionNwo . toLowerCase ( ) ) ) {
108
109
console . info (
109
110
`Workflow ${ workflowPath } uses '${ actionName } ' which is not supported for GHES.`
110
111
) ;
Original file line number Diff line number Diff line change 2
2
"folders" : [
3
3
" ../../ci" ,
4
4
" ../../automation" ,
5
- " ../../deployments"
5
+ " ../../deployments" ,
6
+ " ../../code-scanning"
6
7
],
7
8
"enabledActions" : [
8
9
" actions/checkout" ,
16
17
" actions/stale" ,
17
18
" actions/starter-workflows" ,
18
19
" actions/upload-artifact" ,
19
- " actions/upload-release-asset"
20
+ " actions/upload-release-asset" ,
21
+ " github/codeql-action"
20
22
],
21
23
"partners" : [
22
24
" Alibaba Cloud" ,
You can’t perform that action at this time.
0 commit comments