This is an automated email from the ASF dual-hosted git repository.
lewismc pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika-helm.git
The following commit(s) were added to refs/heads/main by this push:
new d45ed32 TIKA-4660 Add automated Tika Docker image version bump
workflow and upgrade all GitHub Actions
d45ed32 is described below
commit d45ed32be84dbd41befa6ca97b2e41bf6835043f
Author: Lewis John McGibbney <[email protected]>
AuthorDate: Sun Feb 15 19:04:30 2026 -0800
TIKA-4660 Add automated Tika Docker image version bump workflow and upgrade
all GitHub Actions
---
.github/workflows/update-tika-version.yaml | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/.github/workflows/update-tika-version.yaml
b/.github/workflows/update-tika-version.yaml
index 8b6e348..4cd9c94 100644
--- a/.github/workflows/update-tika-version.yaml
+++ b/.github/workflows/update-tika-version.yaml
@@ -105,6 +105,24 @@ jobs:
sed -i "s/\"default\": \"${OLD_TAG}\"/\"default\": \"${NEW_TAG}\"/"
values.schema.json
shell: bash
+ - name: Install and run helm-docs
+ if: steps.compare.outputs.updated == 'true'
+ shell: bash
+ env:
+ GH_TOKEN: ${{ github.token }}
+ GH_REPO: norwoodj/helm-docs
+ run: |
+ set -euo pipefail
+ RELEASE="$(gh release view --json=name,assets)"
+ VERSION="$(jq -r '.name' <<<"$RELEASE")"
+ echo "Installing helm-docs $VERSION..."
+ DEST="$RUNNER_TEMP/helm-docs"
+ ASSET="$(jq -r '.assets[].name | select(ascii_downcase |
test("linux_(amd64|x86_64).tar.gz$"))' <<<"$RELEASE")"
+ mkdir -p "$DEST"
+ cd "$DEST"
+ gh release download "$VERSION" --pattern="$ASSET" --output=- | tar
-xzf - helm-docs
+ ./helm-docs -c "$GITHUB_WORKSPACE"
+
- name: Create Pull Request
if: steps.compare.outputs.updated == 'true'
uses: peter-evans/create-pull-request@v8