From 8a659f4a21090233e891a8ba9179c7e1cda7de9a Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Tue, 1 Sep 2026 17:39:28 -0400 Subject: [PATCH] ci(release-please): bump action to v5.0.0-oce.3 v5.0.0-oce.3 is the first release-please-action tag whose bundled dist/index.js actually defaults annotatedTag to true. The library change merged earlier, but the action's package-lock.json pinned the old library commit and every build path uses npm ci, so oce.2 still shipped the lightweight-tag behavior. The workflow header and README already describe annotated tags as the default; this bump is what makes that claim true. README carried the same hardcoded ref and moves with it. Assisted-by: Claude Code --- .github/workflows/release-please-reusable.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-please-reusable.yml b/.github/workflows/release-please-reusable.yml index 2b659e1..845105e 100644 --- a/.github/workflows/release-please-reusable.yml +++ b/.github/workflows/release-please-reusable.yml @@ -164,7 +164,7 @@ jobs: - name: Run Release Please id: release - uses: openCoreEMR/release-please-action@v5.0.0-oce.2 + uses: openCoreEMR/release-please-action@v5.0.0-oce.3 with: config-file: ${{ inputs.config-file }} manifest-file: ${{ inputs.manifest-file }} diff --git a/README.md b/README.md index 36f8f3b..8cf2173 100644 --- a/README.md +++ b/README.md @@ -78,4 +78,4 @@ Secrets: Callers in the `openCoreEMR` org should use `secrets: inherit`. The reusable workflow reads the org variable `RELEASE_PLEASE_CLIENT_ID` (auto-inherited) and the org secret `RELEASE_PLEASE_PRIVATE_KEY` (forwarded by `inherit`), mints a short-lived App installation token, and uses it for checkout and release-please. PRs opened by the App identity trigger downstream `pull_request` workflows; PRs opened by the default `GITHUB_TOKEN` do not (GitHub anti-recursion). -The pinned action ref (`openCoreEMR/release-please-action@v5.0.0-oce.2`) is hardcoded — GitHub Actions does not allow expressions in `uses:` references, so it can't be a workflow input. +The pinned action ref (`openCoreEMR/release-please-action@v5.0.0-oce.3`) is hardcoded — GitHub Actions does not allow expressions in `uses:` references, so it can't be a workflow input.