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:
|
||||
version: ${{ env.HELM_CHART_TESTING_VERSION }}
|
||||
|
||||
# - name: install docker
|
||||
# run: |
|
||||
# install -m 0755 -d /etc/apt/keyrings
|
||||
# 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
|
||||
# echo \
|
||||
# "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" | \
|
||||
# tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
# apt-get update -qq
|
||||
# apt-get -q install -qq \
|
||||
# docker-ce \
|
||||
# docker-ce-cli \
|
||||
# containerd.io \
|
||||
# ;
|
||||
- name: install docker
|
||||
run: |
|
||||
install -m 0755 -d /etc/apt/keyrings
|
||||
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
|
||||
echo \
|
||||
"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" | \
|
||||
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
apt-get update -qq
|
||||
apt-get -q install -qq \
|
||||
docker-ce-cli \
|
||||
;
|
||||
|
||||
# - run: pip3 install yamllint yamale
|
||||
|
||||
|
|
|
@ -38,6 +38,18 @@
|
|||
"matchManagers": ["npm"],
|
||||
"matchDepTypes": ["devDependencies"],
|
||||
"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": [
|
||||
|
|
Loading…
Reference in a new issue