Skip to content

chore(deps): update dependency kubectl to v1.32.4 #3261

chore(deps): update dependency kubectl to v1.32.4

chore(deps): update dependency kubectl to v1.32.4 #3261

Workflow file for this run

---
name: mega-linter
on:
workflow_dispatch:
push:
branches-ignore:
- main
permissions: read-all
jobs:
github-context:
runs-on: ubuntu-latest
steps:
- name: Debug
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "${GITHUB_CONTEXT}"
mega-linter:
runs-on: ubuntu-latest
if: ${{ (!startsWith(github.ref_name, 'renovate/') && !startsWith(github.ref_name, 'release-please--')) || github.event_name == 'workflow_dispatch' }}
timeout-minutes: 30
steps:
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Extract commands from markdown files
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew install mdq
readarray -d '' MD_FILES < <(find . -type f -name "*.md" -print0)
for MD_FILE in "${MD_FILES[@]}"; do
echo "💡 *** ${MD_FILE}"
for MDQ_CODE_BLOCK in bash sh shell; do
if mdq '```/^'"${MDQ_CODE_BLOCK}"'$/' --br -o plain "$MD_FILE" > "${MD_FILE%.md}-${MDQ_CODE_BLOCK}.sh"; then
sed -i '1i#!/usr/bin/env bash' "${MD_FILE%.md}-${MDQ_CODE_BLOCK}.sh"
chmod a+x "${MD_FILE%.md}-${MDQ_CODE_BLOCK}.sh"
else
echo "No code block found in \"${MD_FILE}\" with language \"${MDQ_CODE_BLOCK}\""
rm "${MD_FILE%.md}-${MDQ_CODE_BLOCK}.sh"
fi
done
done
- name: 💡 MegaLinter
uses: oxsecurity/megalinter@04cf22b980c2e9c2121553417ed651c944afc8e1 # v8.6.0
env:
GITHUB_COMMENT_REPORTER: false
# Disabled due to error: [GitHub Status Reporter] Error posting Status for REPOSITORY with ...: 403
GITHUB_STATUS_REPORTER: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}