fix(deps): bump golang.org/x/text from 0.15.0 to 0.19.0 #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Version Bump Check | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
env: | |
FILE_PATH: 'cmd/root.go' # Path to file with version string | |
VERSION_PATTERN: 'Version: "v[0-9]\+\.[0-9]\+\.[0-9]\+",' # Version string regex pattern | |
jobs: | |
version-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 2 | |
- name: Check if Version String is Updated | |
run: | | |
if git diff -U0 --diff-filter 'AM' -r HEAD^1 HEAD -- "$FILE_PATH" | grep -q "$VERSION_PATTERN"; then | |
echo "##### ✅ Version updated in $FILE_PATH" >> "$GITHUB_STEP_SUMMARY" | |
else | |
echo "##### ❌ Version NOT updated in $FILE_PATH" >> "$GITHUB_STEP_SUMMARY" | |
exit 1 | |
fi |