diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c922a3..9dfce76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog -## 3.1.0 +## Unreleased + +### Dependencies + +- Bump Workflow args test script from latest to v3.1.0 ([#135](https://github.com/getsentry/github-workflows/pull/135)) + - [changelog](https://github.com/getsentry/github-workflows/blob/main/CHANGELOG.md#310) + - [diff](https://github.com/getsentry/github-workflows/compare/latest...3.1.0) + +## 2.14.0 ### Features diff --git a/updater/tests/workflow-args.sh b/updater/tests/workflow-args.sh index 8d68c11..ee14d88 100755 --- a/updater/tests/workflow-args.sh +++ b/updater/tests/workflow-args.sh @@ -5,21 +5,7 @@ set -euo pipefail case $1 in get-version) - # Return the actual latest tag to ensure no update is needed - # Always use remote lookup for consistency with update-dependency.ps1 - tags=$(git ls-remote --tags --refs https://github.com/getsentry/github-workflows.git | \ - sed 's/.*refs\/tags\///' | \ - grep -E '^v?[0-9.]+$') - - # Sort by version number, handling mixed v prefixes - latest=$(echo "$tags" | sed 's/^v//' | sort -V | tail -1) - - # Check if original had v prefix and restore it - if echo "$tags" | grep -q "^v$latest$"; then - echo "v$latest" - else - echo "$latest" - fi + echo "3.1.0" # Run actual tests here. if [[ "$(uname)" != 'Darwin' ]]; then