chore(deps): update docker.io/thegeeklab/git-sv docker tag to v2.0.11 #69

Merged
williamp merged 3 commits from renovate/workflow-dependencies-(minor-and-patch) into main 2026-03-29 21:37:20 +00:00
3 changed files with 7 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ on:
jobs: jobs:
changelog: changelog:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: docker.io/thegeeklab/git-sv:2.0.10 container: docker.io/thegeeklab/git-sv:2.0.11
steps: steps:
- name: install tools - name: install tools
run: | run: |

View File

@@ -91,7 +91,7 @@ jobs:
release-gitea: release-gitea:
needs: generate-chart-publish needs: generate-chart-publish
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: docker.io/thegeeklab/git-sv:2.0.10 container: docker.io/thegeeklab/git-sv:2.0.11
steps: steps:
- name: install tools - name: install tools
run: | run: |

View File

@@ -18,9 +18,12 @@ jobs:
container: alpine/helm:4.1.3 container: alpine/helm:4.1.3
steps: steps:
- name: install tools - name: install tools
run: | run: | # Hacky way of installing yamllint due to previous action failures, likely not needed after dependency fix is made on Alpine's side
apk update apk update
apk add --update bash make nodejs npm yamllint ncurses apk add --update bash make nodejs npm ncurses python3 py3-pip
python3 -m venv /opt/venv
/opt/venv/bin/pip install yamllint
ln -s /opt/venv/bin/yamllint /usr/local/bin/yamllint
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- name: install chart dependencies - name: install chart dependencies
run: helm dependency build run: helm dependency build