Skip to content

Commit 9b25ff2

Browse files
committed
sync: update 3 files from source repository
1 parent 278bb12 commit 9b25ff2

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.github/.env.base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ REDIS_CACHE_FORCE_PULL=false # Force pull Redis images even when cache
232232
# 🪄 MAGE-X CONFIGURATION
233233
# ================================================================================================
234234

235-
MAGE_X_VERSION=v1.7.16 # https://github.com/mrz1836/mage-x/releases
235+
MAGE_X_VERSION=v1.8.0 # https://github.com/mrz1836/mage-x/releases
236236
MAGE_X_USE_LOCAL=false # Use local version for development
237237
MAGE_X_AUTO_DISCOVER_BUILD_TAGS=true # Enable auto-discovery of build tags
238238
MAGE_X_AUTO_DISCOVER_BUILD_TAGS_EXCLUDE=race,custom # Comma-separated list of tags to exclude

.github/sweep.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
gha_enabled: true
2-
branch: master
32
blocked_dirs: []
43
draft: false
54
description: |
65
Sweep AI must follow the repository guidelines in .github/AGENTS.md.
76
rules:
87
- "Read .github/AGENTS.md first; it overrides these rules."
98
- "Format code with magex format:fix"
10-
- "Lint with 'magex lint' and vet with 'magex vet'"
9+
- "Lint with 'magex lint'"
1110
- "Run 'magex test' before committing"
12-
- "Commit messages use '<type>(<scope>): <short description>'"
13-
- "PR titles use '[Subsystem] Imperative and concise summary'"
14-
- "PR descriptions include: What Changed, Why It Was Necessary, Testing Performed, Impact / Risk"
15-
- "Run 'magex dep:tidy' after import changes"
11+
- "Commit messages refer to AGENTS.md"
12+
- "Run 'magex deps:tidy' after import changes"
1613
- "Report vulnerabilities privately following SECURITY.md"

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,22 @@
588588
],
589589
"type": "shell"
590590
},
591+
{
592+
"command": "magex deps:update all-modules verbose",
593+
"detail": "Update dependencies across all modules",
594+
"group": "none",
595+
"label": "magex: deps:update:all-modules",
596+
"presentation": {
597+
"clear": true,
598+
"focus": false,
599+
"panel": "shared",
600+
"reveal": "always"
601+
},
602+
"problemMatcher": [
603+
"$go"
604+
],
605+
"type": "shell"
606+
},
591607
{
592608
"command": "magex deps:audit",
593609
"detail": "Audit dependencies for known security vulnerabilities",

0 commit comments

Comments
 (0)