Skip to content

Commit 4e23787

Browse files
committed
Use local setup workflow where it makes sense
Signed-off-by: Eike Waldt <[email protected]> On-behalf-of: SAP <[email protected]>
1 parent bd6f769 commit 4e23787

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

.github/workflows/bandit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v6
20-
- uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@main
20+
- uses: ./.github/actions/setup
2121
- name: Simple bandit security checks
2222
run: make security
2323
- name: Show Report in Action Output
2424
if: always()
2525
run: cat bandit-report.json
2626
- name: Upload Bandit Scan Artifact
27-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # [email protected]
27+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # [email protected]
2828
if: always()
2929
with:
30-
name: bandit-findings
31-
path: bandit-report.json
30+
name: bandit-findings
31+
path: bandit-report.json

.github/workflows/build.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v6
20-
21-
- name: Force Python Version (workaround)
22-
uses: actions/setup-python@v5
23-
with:
24-
python-version: "3.13"
25-
26-
- uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@main
20+
- uses: ./.github/actions/setup
2721
- name: Simple poetry build no package
2822
run: make build

0 commit comments

Comments
 (0)