Skip to content

Commit 5ee2a93

Browse files
ci(deps): bump the github-actions group with 2 updates (#808)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tobias Wochinger <tobias.wochinger@clickhouse.com>
1 parent 518a646 commit 5ee2a93

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ LANGFUSE_SECRET_KEY="sk-lf-1234567890"
55

66
# OpenAI API key for e2e tests
77
OPENAI_API_KEY=
8+
# AutoEvals defaults to Braintrust's proxy unless this is set.
9+
# See https://github.com/braintrustdata/autoevals#using-other-ai-providers
10+
OPENAI_BASE_URL="https://api.openai.com/v1"
811

912
# Min log level
1013
LANGFUSE_LOG_LEVEL=INFO

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
# Initializes the CodeQL tools for scanning.
5454
- name: Initialize CodeQL
55-
uses: github/codeql-action/init@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
55+
uses: github/codeql-action/init@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v4.35.5
5656
with:
5757
languages: ${{ matrix.language }}
5858
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -70,7 +70,7 @@ jobs:
7070
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
7171
# If this step fails, then you should remove it and run the build manually (see below)
7272
- name: Autobuild
73-
uses: github/codeql-action/autobuild@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
73+
uses: github/codeql-action/autobuild@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v4.35.5
7474

7575
# ℹ️ Command-line programs to run using the OS shell.
7676
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -83,6 +83,6 @@ jobs:
8383
# ./location_of_script_within_repo/buildscript.sh
8484

8585
- name: Perform CodeQL Analysis
86-
uses: github/codeql-action/analyze@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
86+
uses: github/codeql-action/analyze@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v4.35.5
8787
with:
8888
category: "/language:${{matrix.language}}"

.github/workflows/zizmor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
persist-credentials: false
2828
- name: Run zizmor
29-
uses: zizmorcore/zizmor-action@b1d7e1fb5de872772f31590499237e7cce841e8e # v0.5.3
29+
uses: zizmorcore/zizmor-action@a16621b09c6db4281f81a93cb393b05dcd7b7165 # v0.5.5
3030
with:
3131
advanced-security: ${{ github.event_name == 'push' && 'true' || 'false' }}
3232
min-severity: low

vitest.setup.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ import { config } from "dotenv";
22
import { resolve } from "path";
33

44
config({ path: resolve(process.cwd(), ".env"), quiet: true });
5+
6+
// AutoEvals defaults to Braintrust's proxy unless this is set.
7+
// See https://github.com/braintrustdata/autoevals#using-other-ai-providers
8+
process.env.OPENAI_BASE_URL ??= "https://api.openai.com/v1";

0 commit comments

Comments
 (0)