Skip to content

Commit 53f4d6b

Browse files
committed
Remove secrets
1 parent d8aa380 commit 53f4d6b

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.github/workflows/child-workflow-1.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Child Workflow 1 - Tests
22

33
on:
44
workflow_call:
5-
secrets: inherit
65

76
jobs:
87
run-tests:

.github/workflows/child-workflow-2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Child Workflow 2 - Build & Security
22

33
on:
44
workflow_call:
5-
secrets: inherit
5+
66

77
jobs:
88
build:

.github/workflows/parent-workflow.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ jobs:
1515
run-tests:
1616
name: "Execute Test Suite"
1717
uses: ./.github/workflows/child-workflow-1.yml
18-
secrets: inherit
1918

2019
run-build-security:
2120
name: "Execute Build & Security Checks"
2221
uses: ./.github/workflows/child-workflow-2.yml
23-
secrets: inherit
2422

2523
# Parent workflow job that runs after both children complete
2624
collect-and-deploy:

0 commit comments

Comments
 (0)