Skip to content

Commit c2026bc

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 c2026bc

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
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/black.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v6
10-
- uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@main
10+
- uses: ./.github/actions/setup
1111
- run: make lint

.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

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name: Update Sphinx documentation
33
on: [push, pull_request, workflow_dispatch]
44

55
permissions:
6-
contents: write
6+
contents: write
77

88
jobs:
99
docs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v6
13-
- uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@main
13+
- uses: ./.github/actions/setup
1414
- run: make docs
1515
- name: Deploy to GitHub Pages
1616
uses: peaceiris/actions-gh-pages@v4

0 commit comments

Comments
 (0)