Add missing v to regex

This commit is contained in:
Michael B. Gale 2025-06-23 12:56:13 +01:00
parent fcd0ad43d5
commit 46cafbca67
No known key found for this signature in database
GPG key ID: FF5E2765BD00628F

View file

@ -40,7 +40,7 @@ jobs:
shell: bash
run: |
NOW=$(date +"%Y%m%d%H%M%S") # only used to make sure we don't fetch stale binaries from the toolcache
sed -i '' "s|https://github.com/github/codeql-action/releases/download/codeql-bundle-[0-9.]*/|https://github.com/github/codeql-action/releases/download/$RELEASE_TAG/|g" ./src/start-proxy-action.ts
sed -i '' "s|https://github.com/github/codeql-action/releases/download/codeql-bundle-v[0-9.]*/|https://github.com/github/codeql-action/releases/download/$RELEASE_TAG/|g" ./src/start-proxy-action.ts
sed -i '' "s/\"v2.0.[0-9]*\"/\"v2.0.$NOW\"/g" ./src/start-proxy-action.ts
- name: Push changes and open PR