Skip to content

Commit 81ffd6d

Browse files
authored
Merge pull request #38 from braintrustdata/aswin/pin-orchestrion
Pin orchestrion to 1.6.1
2 parents 92ccc2e + b0b834e commit 81ffd6d

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
version: v2.1.6
3333
- name: Install orchestrion
34-
run: go install github.com/DataDog/orchestrion@latest
34+
run: go install github.com/DataDog/orchestrion@v1.6.1
3535
- name: Lint, vet, tests, etc.
3636
run: make ci
3737

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
version: v2.1.6
3939

4040
- name: Install orchestrion
41-
run: go install github.com/DataDog/orchestrion@latest
41+
run: go install github.com/DataDog/orchestrion@v1.6.1
4242

4343
- name: Install goreleaser
4444
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Use [Orchestrion](https://github.com/DataDog/orchestrion) to automatically injec
3131

3232
**1. Install orchestrion:**
3333
```bash
34-
go install github.com/DataDog/orchestrion@latest
34+
go install github.com/DataDog/orchestrion@v1.6.1
3535
```
3636

3737
**2. Create `orchestrion.tool.go` in your project root:**

examples/internal/autoinstrumentation/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ help:
44
@echo "Auto-Instrumentation Example (using Orchestrion)"
55
@echo ""
66
@echo "Prerequisites:"
7-
@echo " go install github.com/DataDog/orchestrion@latest"
7+
@echo " go install github.com/DataDog/orchestrion@v1.6.1"
88
@echo ""
99
@echo "Environment variables:"
1010
@echo " BRAINTRUST_API_KEY - Braintrust API key"

trace/contrib/orchestrion_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func TestOrchestrionInjection(t *testing.T) {
2323

2424
// Check orchestrion is available
2525
if _, err := exec.LookPath("orchestrion"); err != nil {
26-
t.Fatal("orchestrion not found in PATH (install: go install github.com/DataDog/orchestrion@latest)")
26+
t.Fatal("orchestrion not found in PATH (install: go install github.com/DataDog/orchestrion@v1.6.1)")
2727
}
2828

2929
// Get the testdata directory

0 commit comments

Comments
 (0)