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/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- name: Fetch Dependabot metadata
id: meta
uses: dependabot/fetch-metadata@08eff52bf64351f401fb50d4972fa95b9f2c2d1b #2.4.0
uses: dependabot/fetch-metadata@ffa630c65fa7e0ecfa0625b5ceda64399aea1b36 #3.0.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
UV_SYSTEM_PYTHON: 1
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 #v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2
- name: Setup uv
uses: ./.github/actions/setup-uv

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
MAX_PARALLEL_DOWNLOAD: 10
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 #v6.0.1
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2

- name: Setup uv
uses: ./.github/actions/setup-uv
Expand Down
2 changes: 1 addition & 1 deletion kube_models_generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

K8S_REPO_URL="${K8S_REPO_URL:-https://github.com/kubernetes/kubernetes}"
K8S_OPENAPI_SPEC_PATH="${K8S_OPENAPI_SPEC_PATH:-api/openapi-spec/v3}"
K8S_VERSIONS="${K8S_VERSIONS:-1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 1.31 1.32 1.33 1.34 1.35}"
K8S_VERSIONS="${K8S_VERSIONS:-1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 1.31 1.32 1.33 1.34 1.35 1.36}"

OPENAPI_SPEC_DIR="${OPENAPI_SPEC_DIR:-.run/kube_openapi_spec}"
DATA_MODEL_DIR="${DATA_MODEL_DIR:-packages/kube_models/src/kube_models}"
Expand Down
2 changes: 1 addition & 1 deletion packages/kube_models/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "kube-models"
version = "0.4.1"
version = "0.5.0"
requires-python = ">=3.10"
description = "Python dataclasses for all Kubernetes built-in resources (v1.23+)"
readme = "README.md"
Expand Down
Loading