File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
2- "ignore" : [" **/dist/**" ]
2+ "ignore" : [" **/dist/**" , " **/node_modules/** " , " **/coverage/** " ]
33}
Original file line number Diff line number Diff line change @@ -3,9 +3,7 @@ name: Internal - Tests for action
33on :
44 workflow_call :
55
6- permissions :
7- contents : read
8- issues : write
6+ permissions : {}
97
108env :
119 TEST_VALID_ISSUE_NUMBER : " 6" # This issue number should be valid
1513 test-action-with-valid-issue :
1614 runs-on : ubuntu-latest
1715 name : Test with valid issue
16+ permissions :
17+ contents : read
18+ issues : write
1819 steps :
19- - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
20+ - uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
21+ with :
22+ persist-credentials : false
2023
2124 - id : get-issue-body
2225 uses : actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
5861 test-action-with-invalid-issue :
5962 runs-on : ubuntu-latest
6063 name : Test with invalid issue
64+ permissions :
65+ contents : read
66+ issues : write
6167 steps :
62- - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
68+ - uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
69+ with :
70+ persist-credentials : false
6371
6472 - id : get-issue-body
6573 uses : actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
Original file line number Diff line number Diff line change 1212 permissions :
1313 contents : read
1414 steps :
15- - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
16- - uses : hoverkraft-tech/ci-github-nodejs/actions/setup-node@32a69b7b8fd5f7ab7bf656e7e88aa90ad235cf8d # 0.18.0
15+ - uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
16+ with :
17+ persist-credentials : false
18+
19+ - uses : hoverkraft-tech/ci-github-nodejs/actions/setup-node@80acfc9bc4dd87030d73006dee4c788ed9af1fb0 # 0.20.1
1720
1821 - name : Build dist/ Directory
1922 id : package
2831 git diff --ignore-space-at-eol --text dist/
2932 exit 1
3033 fi
31-
32- # If `dist/` was different than expected, and this was not a Dependabot
33- # PR, upload the expected version as a workflow artifact.
34- - if : ${{ failure() && steps.diff.outcome == 'failure' }}
35- name : Upload Artifact
36- id : upload
37- uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
38- with :
39- name : dist
40- path : dist/
Original file line number Diff line number Diff line change @@ -3,17 +3,15 @@ name: Internal - Checks for nodejs
33on :
44 workflow_call :
55
6- permissions :
7- contents : read
8- security-events : write
9- id-token : write
6+ permissions : {}
107
118jobs :
129 test-nodejs :
13- uses : hoverkraft-tech/ci-github-nodejs/.github/workflows/continuous-integration.yml@32a69b7b8fd5f7ab7bf656e7e88aa90ad235cf8d # 0.18.0
10+ uses : hoverkraft-tech/ci-github-nodejs/.github/workflows/continuous-integration.yml@80acfc9bc4dd87030d73006dee4c788ed9af1fb0 # 0.20.1
1411 permissions :
1512 contents : read
1613 id-token : write
14+ packages : read
1715 pull-requests : write
1816 security-events : write
1917 with :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ permissions: {}
77
88jobs :
99 linter :
10- uses : hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@753288393de1f3d92f687a6761d236ca800f5306 # 0.28 .1
10+ uses : hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@c314229c3ca6914f7023ffca7afc26753ab99b41 # 0.30 .1
1111 permissions :
1212 actions : read
1313 contents : read
3232 permissions :
3333 contents : read
3434 id-token : write
35+ packages : read
3536 pull-requests : write
3637 security-events : write
3738 secrets : inherit
Original file line number Diff line number Diff line change 66 pull_request_target :
77 branches : [main]
88
9- permissions :
10- contents : read
11- issues : write
12- pull-requests : write
9+ permissions : {}
1310
1411jobs :
1512 greetings :
16- uses : hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml@753288393de1f3d92f687a6761d236ca800f5306 # 0.28.1
13+ uses : hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml@c314229c3ca6914f7023ffca7afc26753ab99b41 # 0.30.1
14+ permissions :
15+ contents : read
16+ issues : write
17+ pull-requests : write
Original file line number Diff line number Diff line change 1919 contents : read
2020 id-token : write
2121 issues : write
22+ packages : read
2223 pull-requests : write
2324 security-events : write
2425 statuses : write
@@ -30,18 +31,21 @@ jobs:
3031 permissions :
3132 contents : read
3233 steps :
33- - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
34+ - uses : actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
35+ with :
36+ persist-credentials : false
37+
3438 - uses : hoverkraft-tech/ci-dokumentor@c46a1a108957237cf485103a80b060c35c7dba33 # 0.2.2
3539 with :
3640 source : action.yml
3741
38- - uses : actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
42+ - uses : actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2.2.0
3943 id : generate-token
4044 with :
4145 app-id : ${{ vars.CI_BOT_APP_ID }}
4246 private-key : ${{ secrets.CI_BOT_APP_PRIVATE_KEY }}
4347
44- - uses : hoverkraft-tech/ci-github-common/actions/create-and-merge-pull-request@753288393de1f3d92f687a6761d236ca800f5306 # 0.28 .1
48+ - uses : hoverkraft-tech/ci-github-common/actions/create-and-merge-pull-request@c314229c3ca6914f7023ffca7afc26753ab99b41 # 0.30 .1
4549 with :
4650 github-token : ${{ steps.generate-token.outputs.token }}
4751 branch : docs/actions-workflows-documentation-update
Original file line number Diff line number Diff line change 1616 To go back further, enter an earlier SHA here.
1717 required : false
1818
19- permissions :
20- contents : read
21- issues : write
22-
23- concurrency :
24- group : ${{ github.workflow }}-${{ github.ref }}
25- cancel-in-progress : true
19+ permissions : {}
2620
2721jobs :
2822 main :
29- uses : hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@753288393de1f3d92f687a6761d236ca800f5306 # 0.28.1
23+ uses : hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@c314229c3ca6914f7023ffca7afc26753ab99b41 # 0.30.1
24+ permissions :
25+ contents : read
26+ issues : write
3027 with :
3128 manual-commit-ref : ${{ inputs.manual-commit-ref }}
3229 manual-base-ref : ${{ inputs.manual-base-ref }}
Original file line number Diff line number Diff line change 1919 contents : read
2020 id-token : write
2121 issues : write
22+ packages : read
2223 pull-requests : write
2324 security-events : write
2425 statuses : write
Original file line number Diff line number Diff line change 77 - edited
88 - synchronize
99
10- permissions :
11- contents : write
12- pull-requests : write
10+ permissions : {}
1311
1412jobs :
1513 main :
16- uses : hoverkraft-tech/ci-github-common/.github/workflows/semantic-pull-request.yml@753288393de1f3d92f687a6761d236ca800f5306 # 0.28.1
14+ uses : hoverkraft-tech/ci-github-common/.github/workflows/semantic-pull-request.yml@c314229c3ca6914f7023ffca7afc26753ab99b41 # 0.30.1
15+ permissions :
16+ contents : write
17+ pull-requests : write
You can’t perform that action at this time.
0 commit comments