Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion build/metadata/github-actions/Dockerfile
Original file line number Diff line number Diff line change
@@ -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."
Expand Down
6 changes: 3 additions & 3 deletions build/metadata/github-actions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build/metadata/github-actions/docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "2.16.0"
const Version = "2.17.0"
Loading