ci: testing
This commit is contained in:
parent
4e0c85d593
commit
005df93701
2 changed files with 25 additions and 15 deletions
|
@ -97,21 +97,19 @@ jobs:
|
||||||
with:
|
with:
|
||||||
version: ${{ env.HELM_CHART_TESTING_VERSION }}
|
version: ${{ env.HELM_CHART_TESTING_VERSION }}
|
||||||
|
|
||||||
# - name: install docker
|
- name: install docker
|
||||||
# run: |
|
run: |
|
||||||
# install -m 0755 -d /etc/apt/keyrings
|
install -m 0755 -d /etc/apt/keyrings
|
||||||
# curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||||
# chmod a+r /etc/apt/keyrings/docker.gpg
|
chmod a+r /etc/apt/keyrings/docker.gpg
|
||||||
# echo \
|
echo \
|
||||||
# "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
|
||||||
# $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
||||||
# tee /etc/apt/sources.list.d/docker.list > /dev/null
|
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
# apt-get update -qq
|
apt-get update -qq
|
||||||
# apt-get -q install -qq \
|
apt-get -q install -qq \
|
||||||
# docker-ce \
|
docker-ce-cli \
|
||||||
# docker-ce-cli \
|
;
|
||||||
# containerd.io \
|
|
||||||
# ;
|
|
||||||
|
|
||||||
# - run: pip3 install yamllint yamale
|
# - run: pip3 install yamllint yamale
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,18 @@
|
||||||
"matchManagers": ["npm"],
|
"matchManagers": ["npm"],
|
||||||
"matchDepTypes": ["devDependencies"],
|
"matchDepTypes": ["devDependencies"],
|
||||||
"automerge": true
|
"automerge": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Separate minor and patch updates for kindest",
|
||||||
|
"matchPackageNames": ["kindest/node"],
|
||||||
|
"separateMinorPatch": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Require approval and no automerge for kindest major and minor updates",
|
||||||
|
"matchPackageNames": ["kindest/node"],
|
||||||
|
"matchUpdateTypes": ["major", "minor"],
|
||||||
|
"dependencyDashboardApproval": true,
|
||||||
|
"automerge": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"customManagers": [
|
"customManagers": [
|
||||||
|
|
Loading…
Reference in a new issue