Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
default: "0.10.6"
python_version:
description: Python version to setup
default: "3.14"
default: "3.13"

outputs:
version:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@main
- uses: ./.github/actions/setup
- name: Simple bandit security checks
run: make security
- name: Show Report in Action Output
if: always()
run: cat bandit-report.json
- name: Upload Bandit Scan Artifact
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # [email protected]
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # [email protected]
if: always()
with:
name: bandit-findings
path: bandit-report.json
name: bandit-findings
path: bandit-report.json
2 changes: 1 addition & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@main
- uses: ./.github/actions/setup
- run: make lint
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@main
- uses: ./.github/actions/setup
- name: Simple poetry build no package
run: make build
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: Update Sphinx documentation
on: [push, pull_request, workflow_dispatch]

permissions:
contents: write
contents: write

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@main
- uses: ./.github/actions/setup
- run: make docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/pytests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ on:
- main
pull_request:


jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
strategy:
matrix:
python_version: [ "3.13", "3.14" ]
python_version: ["3.13"]
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.md"
packages = [{ include = "gardenlinux", from = "src" }]

[tool.poetry.dependencies]
python = ">=3.13"
python = ">=3.13, <3.14"
apt-repo = "^0.5"
boto3 = "^1.40.57"
click = "^8.2.1"
Expand Down
Loading