8000 Renovate for ci.yaml dependencies by J12934 · Pull Request #3204 · secureCodeBox/secureCodeBox · GitHub
[go: up one dir, main page]

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
13 changes: 9 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,17 @@ on:
env:
# ---- Language Versions ----

# renovate: datasource=github-releases depName=python/cpython
PYTHON_VERSION: "3.13.5"
KIND_NODE_IMAGE: "kindest/node:v1.33.1@sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f"
# renovate: datasource=github-releases depName=kubernetes/kubernetes
KUBECTL_VERSION: "v1.33.2"
# renovate: datasource=github-releases depName=kubernetes-sigs/kind
KIND_BINARY_VERSION: "v0.29.0"
# renovate: datasource=github-releases depName=helm/helm
HELM_VERSION: "v3.18.4"
HELM_PLUGIN_UNITTEST: "1.0.0"
# renovate: datasource=github-releases depName=helm-unittest/helm-unittest
HELM_PLUGIN_UNITTEST_VERSION: "1.0.0"
# renovate: datasource=github-releases depName=go-task/task
TASK_VERSION: "v3.44.0"

jobs:
Expand Down Expand Up @@ -120,7 +125,7 @@ jobs:

- name: Install Helm Unit Test Plugin
run: |
helm plugin install https://github.com/helm-unittest/helm-unittest.git --version ${{ env.HELM_PLUGIN_UNITTEST }}
helm plugin install https://github.com/helm-unittest/helm-unittest.git --version ${{ env.HELM_PLUGIN_UNITTEST_VERSION }}

- name: Download Task
uses: actions/download-artifact@v5
Expand Down Expand Up @@ -321,7 +326,7 @@ jobs:
- name: "Start kind cluster"
run: |
kind version
kind create cluster --wait 3m --image "$KIND_NODE_IMAGE"
kind create cluster --wait 3m

- name: "Inspect kind cluster"
run: |
Expand Down
12 changes: 9 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,15 @@
"matchStrings": [
"#\\s?renovate: image=(?<depName>.*?)\\s?tag:\\s?[\"']?(?<currentValue>.*?)[\"']?"
]
},
{
"customType": "regex",
"description": "Update GitHub releases dependencies in CI workflow",
"fileMatch": ["^\\.github/workflows/.*\\.ya?ml$"],
"matchStrings": [
"# renovate: datasource=github-releases depName=(?<depName>.*?)\\s*\\w+_VERSION:\\s*[\"']?(?<currentValue>[^\"'\\s]+)[\"']?"
],
"datasourceTemplate": "github-releases"
}
]
}



Loading
0