Skip to content

Commit b3d59eb

Browse files
committed
a
Signed-off-by: DBT pre-commit check
1 parent 71d4b6e commit b3d59eb

2 files changed

Lines changed: 16 additions & 3 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: Python Scan
2+
3+
runs:
4+
using: "composite"
5+
steps:
6+
- name: "Set up Python"
7+
uses: actions/setup-python@v5

.github/workflows/language.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,16 @@ jobs:
2222
languages: ${{ steps.set-languages-result.outputs.result }}
2323

2424
call-workflow-passing-data:
25+
runs-on: ubuntu-latest
26+
permissions:
27+
contents: read
2528
strategy:
2629
matrix:
2730
language: ${{ fromJSON(needs.get-repository-languages.outputs.languages) }}
2831
needs: [get-repository-languages]
29-
uses: ./.github/workflows/test-trigger.yml
30-
with:
31-
language: ${{matrix.language}}
32+
steps:
33+
- name: Run scan for ${{matrix.language}}
34+
uses: ./.github/actions/scans/python/action.yml
35+
# uses: ./.github/workflows/test-trigger.yml
36+
# with:
37+
# language: ${{matrix.language}}

0 commit comments

Comments
 (0)