From 73098f1369770f59baeb3ab55b7400dc1f680635 Mon Sep 17 00:00:00 2001 From: Tony Knopp Date: Thu, 13 Aug 2026 08:33:44 -0400 Subject: [PATCH] [Cursor] chore: prepare release 2.17.0 Co-authored-by: Cursor --- CHANGELOG.md | 2 ++ build/metadata/github-actions/Dockerfile | 2 +- build/metadata/github-actions/README.md | 6 +++--- build/metadata/github-actions/docker/action.yml | 4 ++-- internal/version/version.go | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c203e711..8f434edc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to the ld-find-code-refs program will be documented in this ## [Unreleased] +## [2.17.0] - 2026-08-13 + ### Added: - optional GitHub Action entry point `launchdarkly/find-code-references/docker` with a `dockerImage` input so workflows can pull the scanner image from a private registry or Docker Hub proxy. The root Action is unchanged. diff --git a/build/metadata/github-actions/Dockerfile b/build/metadata/github-actions/Dockerfile index b9c75e1a..ffc39fd5 100644 --- a/build/metadata/github-actions/Dockerfile +++ b/build/metadata/github-actions/Dockerfile @@ -1,4 +1,4 @@ -FROM launchdarkly/ld-find-code-refs-github-action:2.16.0 +FROM launchdarkly/ld-find-code-refs-github-action:2.17.0 LABEL com.github.actions.name="LaunchDarkly Code References" LABEL com.github.actions.description="Find references to feature flags in your code." diff --git a/build/metadata/github-actions/README.md b/build/metadata/github-actions/README.md index c81d22b6..218cd9c3 100644 --- a/build/metadata/github-actions/README.md +++ b/build/metadata/github-actions/README.md @@ -28,7 +28,7 @@ jobs: with: fetch-depth: 11 # This value must be set if the lookback configuration option is not disabled for find-code-references. Read more: https://github.com/launchdarkly/ld-find-code-refs#searching-for-unused-flags-extinctions - name: LaunchDarkly Code References - uses: launchdarkly/find-code-references@v2.16.0 + uses: launchdarkly/find-code-references@v2.17.0 with: accessToken: ${{ secrets.LD_ACCESS_TOKEN }} projKey: LD_PROJECT_KEY @@ -68,7 +68,7 @@ jobs: with: accessToken: ${{ secrets.LD_ACCESS_TOKEN }} projKey: LD_PROJECT_KEY - dockerImage: your.registry.example/launchdarkly/ld-find-code-refs-github-action:2.16.0 + dockerImage: your.registry.example/launchdarkly/ld-find-code-refs-github-action:2.17.0 ``` Mirror the public image `launchdarkly/ld-find-code-refs-github-action` into your registry (pin `dockerImage` to the scanner image tag you mirrored; it can lag the Action tag). This entry point requires a Docker CLI on the runner (included on GitHub-hosted `ubuntu-*` runners). Existing workflows that use the root Action do not need to change. @@ -104,7 +104,7 @@ jobs: with: fetch-depth: 11 # This value must be set if the lookback configuration option is not disabled for find-code-references. Read more: https://github.com/launchdarkly/ld-find-code-refs#searching-for-unused-flags-extinctions - name: LaunchDarkly Code References - uses: launchdarkly/find-code-references@v2.16.0 + uses: launchdarkly/find-code-references@v2.17.0 with: accessToken: ${{ secrets.LD_ACCESS_TOKEN }} projKey: LD_PROJECT_KEY diff --git a/build/metadata/github-actions/docker/action.yml b/build/metadata/github-actions/docker/action.yml index a469061d..419536d7 100644 --- a/build/metadata/github-actions/docker/action.yml +++ b/build/metadata/github-actions/docker/action.yml @@ -52,12 +52,12 @@ inputs: description: >- Container image to run. Defaults to the public Docker Hub image used by the root Action. Set this to your mirrored/proxy image (for example - your.registry.example/launchdarkly/ld-find-code-refs-github-action:2.16.0). + your.registry.example/launchdarkly/ld-find-code-refs-github-action:2.17.0). Authenticate to private registries with docker/login-action (or equivalent) in a prior step. Requires a runner with a Docker CLI (GitHub-hosted ubuntu-* runners include one). required: false - default: "launchdarkly/ld-find-code-refs-github-action:2.16.0" + default: "launchdarkly/ld-find-code-refs-github-action:2.17.0" runs: using: composite steps: diff --git a/internal/version/version.go b/internal/version/version.go index 6d4449da..2fc11aa4 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "2.16.0" +const Version = "2.17.0"