Skip to content

Commit e69d44f

Browse files
authored
[Sync] Update project files from source repository (b318071) (#172)
1 parent 167efdb commit e69d44f

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

.github/.env.base

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ REDIS_CACHE_FORCE_PULL=false # Force pull Redis images even when cache
235235
# 🪄 MAGE-X CONFIGURATION
236236
# ================================================================================================
237237

238-
MAGE_X_VERSION=v1.12.2 # https://github.com/mrz1836/mage-x/releases
238+
MAGE_X_VERSION=v1.13.0 # https://github.com/mrz1836/mage-x/releases
239239
MAGE_X_USE_LOCAL=false # Use local version for development
240240
MAGE_X_CI_SKIP_STEP_SUMMARY=true # Skip duplicate test results in step summary (already in test validation summary)
241241
MAGE_X_AUTO_DISCOVER_BUILD_TAGS=true # Enable auto-discovery of build tags
@@ -290,14 +290,14 @@ GITLEAKS_NOTIFY_USER_LIST=@mrz1836
290290
# Empty = use default config
291291
GITLEAKS_CONFIG_FILE=
292292

293-
# Nancy CVE Exclusions (known acceptable vulnerabilities)
294-
NANCY_EXCLUDES=CVE-2024-38513,CVE-2023-45142
293+
# Nancy CVE Exclusions (known acceptable vulnerabilities) (these are fake examples)
294+
NANCY_EXCLUDES=CVE-9999-12345,CVE-9999-43210
295295

296-
# Govulncheck/Magex CVE Exclusions (known acceptable vulnerabilities)
297-
# Format: comma-separated CVE IDs (e.g., CVE-2024-38513,CVE-2023-45142)
296+
# Govulncheck/Magex CVE Exclusions (known acceptable vulnerabilities) (these are fake examples)
297+
# Format: comma-separated CVE IDs (e.g., CVE-9999-12345,CVE-9999-43210)
298298
# Used by: magex deps:audit (govulncheck) (env or param)
299-
# Can also be passed via: magex deps:audit exclude=CVE-2024-38513
300-
MAGE_X_CVE_EXCLUDES=CVE-2024-38513,CVE-2023-45142
299+
# Can also be passed via: magex deps:audit exclude=CVE-9999-12345
300+
MAGE_X_CVE_EXCLUDES=CVE-9999-12345,CVE-9999-43210
301301

302302
# OSS Index Authentication for Nancy (optional)
303303
# Username (email) for OSS Index authentication - reduces rate limits and provides better vulnerability data
@@ -489,7 +489,7 @@ GO_BROADCAST_AI_PROVIDER=anthropic
489489
GO_BROADCAST_AI_MODEL=
490490

491491
# Generation parameters
492-
GO_BROADCAST_AI_MAX_TOKENS=2000
492+
GO_BROADCAST_AI_MAX_TOKENS=5000
493493
GO_BROADCAST_AI_TIMEOUT=30
494494
GO_BROADCAST_AI_TEMPERATURE=0.3
495495

@@ -506,3 +506,6 @@ GO_BROADCAST_AI_CACHE_MAX_SIZE=1000
506506
GO_BROADCAST_AI_RETRY_MAX_ATTEMPTS=3
507507
GO_BROADCAST_AI_RETRY_INITIAL_DELAY=1
508508
GO_BROADCAST_AI_RETRY_MAX_DELAY=10
509+
510+
# Diff Debugging
511+
# GO_BROADCAST_DEBUG_DIFF_PATH=/tmp/debug-diff.txt

.github/workflows/dependabot-auto-merge.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ jobs:
5252
load-env:
5353
name: 🌍 Load Environment Variables
5454
runs-on: ubuntu-latest
55+
permissions:
56+
contents: read # Required: Read repository content for sparse checkout
5557
# Only run on Dependabot PRs
5658
if: github.event.pull_request.user.login == 'dependabot[bot]'
5759
outputs:

.github/workflows/stale-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
load-env:
4545
name: 🌍 Load Environment Variables
4646
runs-on: ubuntu-latest
47+
permissions:
48+
contents: read # Required: Read repository content for sparse checkout
4749
outputs:
4850
env-json: ${{ steps.load-env.outputs.env-json }}
4951
steps:

.github/workflows/sync-labels.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ jobs:
5656
load-env:
5757
name: 🌍 Load Environment Variables
5858
runs-on: ubuntu-latest
59+
permissions:
60+
contents: read # Required: Read repository content for sparse checkout
5961
outputs:
6062
env-json: ${{ steps.load-env.outputs.env-json }}
6163
labels-file: ${{ steps.extract-config.outputs.labels-file }}

0 commit comments

Comments
 (0)