Skip to content

Commit

Permalink
renovate: kubernetes version starts with v
Browse files Browse the repository at this point in the history
  • Loading branch information
dex4er committed Dec 29, 2024
1 parent f2a4b5e commit 45ab87a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
id-token: write
contents: write

strategy:
matrix:
include:
- kubernetes-version: 1.31.1 # datasource=github-releases depName=kubernetes/kubernetes

runs-on: ubuntu-latest

steps:
Expand All @@ -50,7 +55,7 @@ jobs:
if: runner.os == 'Linux'
uses: medyagh/setup-minikube@master
with:
kubernetes-version: v1.31.1 # datasource=github-releases depName=kubernetes/kubernetes
kubernetes-version: ${{ matrix.kubernetes-version }}

- name: Run binary in the background
run: |
Expand Down
2 changes: 1 addition & 1 deletion .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"versioningTemplate": "semver"
},
{
"extractVersionTemplate": "^v(?<version>.*)$",
"extractVersionTemplate": "^v?(?<version>.*)$",
"fileMatch": ["^\\.github/workflows/.*\\.ya?ml$", "^\\.tool-versions$"],
"matchStrings": [
"(\\s+|.*?@)(?<currentValue>\\S+)\\s*#\\s*datasource=(?<datasource>\\S+)\\s+depName=(?<depName>\\S+)(\\s+versioning=(?<versioning>\\S+))?(\\s+registryUrl=(?<registryUrl>\\S+))?\\s*\\n"
Expand Down

0 comments on commit 45ab87a

Please sign in to comment.