Skip to content

Commit 3b117a9

Browse files
authored
sync: update 3 files from source repository (#59)
1 parent d3e3ff8 commit 3b117a9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/.env.base

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ MAGE_X_USE_LOCAL=false # Use local versio
246246
MAGE_X_AUTO_DISCOVER_BUILD_TAGS=true # Enable auto-discovery of build tags
247247
MAGE_X_AUTO_DISCOVER_BUILD_TAGS_EXCLUDE=race,custom # Comma-separated list of tags to exclude
248248
MAGE_X_FORMAT_EXCLUDE_PATHS=vendor,node_modules,.git,.idea # Format exclusion paths (comma-separated directories to exclude from formatting)
249-
MAGE_X_GITLEAKS_VERSION=8.29.1 # https://github.com/gitleaks/gitleaks/releases
249+
MAGE_X_GITLEAKS_VERSION=8.30.0 # https://github.com/gitleaks/gitleaks/releases
250250
MAGE_X_GOFUMPT_VERSION=v0.9.2 # https://github.com/mvdan/gofumpt/releases
251251
MAGE_X_GOLANGCI_LINT_VERSION=v2.6.2 # https://github.com/golangci/golangci-lint/releases
252252
MAGE_X_GORELEASER_VERSION=v2.12.7 # https://github.com/goreleaser/goreleaser/releases
@@ -304,7 +304,7 @@ NANCY_EXCLUDES=CVE-2024-38513,CVE-2023-45142
304304
# Github Secret(s): OSSI_USERNAME and OSSI_TOKEN
305305

306306
# Security Tools
307-
GITLEAKS_VERSION=8.29.1 # https://github.com/gitleaks/gitleaks/releases
307+
GITLEAKS_VERSION=8.30.0 # https://github.com/gitleaks/gitleaks/releases
308308
GOVULNCHECK_VERSION=v1.1.4 # https://pkg.go.dev/golang.org/x/vuln
309309
NANCY_VERSION=v1.0.52 # https://github.com/sonatype-nexus-community/nancy/releases
310310

@@ -336,7 +336,7 @@ GO_PRE_COMMIT_ALL_FILES=true
336336
GO_PRE_COMMIT_GOLANGCI_LINT_VERSION=v2.6.2 # https://github.com/golangci/golangci-lint/releases
337337
GO_PRE_COMMIT_FUMPT_VERSION=v0.9.2 # https://github.com/mvdan/gofumpt/releases
338338
GO_PRE_COMMIT_GOIMPORTS_VERSION=latest # https://github.com/golang/tools
339-
GO_PRE_COMMIT_GITLEAKS_VERSION=v8.29.1 # https://github.com/gitleaks/gitleaks/releases
339+
GO_PRE_COMMIT_GITLEAKS_VERSION=v8.30.0 # https://github.com/gitleaks/gitleaks/releases
340340

341341
# Build tags for golangci-lint and other tools
342342
GO_PRE_COMMIT_BUILD_TAGS=

.github/actions/warm-cache/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ runs:
208208
echo "🔍 Finding all modules in workspace..."
209209
module_paths=$(go work edit -json | jq -r '(.Use // [])[].DiskPath')
210210
if [ -z "$module_paths" ]; then
211-
echo "⚠️ Warning: No modules found in workspace"
211+
echo "❌ Error: No modules found in workspace - go.work exists but has no 'use' directives"
212+
exit 1
212213
fi
213214
214215
tidy_failed=0

.github/workflows/fortress-setup-config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ jobs:
306306
sparse-checkout: |
307307
.mage.yaml
308308
go.mod
309+
go.work
309310
${{ env.GO_SUM_FILE }}
310311
.github/workflows/fortress.yml
311312
.github/actions/configure-redis

0 commit comments

Comments
 (0)