From 576da280ac08273ebfeebdde649217dd67f8743f Mon Sep 17 00:00:00 2001 From: "Mr. Z" Date: Fri, 21 Nov 2025 14:56:07 -0500 Subject: [PATCH] sync: update 29 files from source repository --- .github/.env.base | 2 +- .github/actions/warm-cache/action.yml | 6 ------ .github/sweep.yaml | 9 +++------ .github/workflows/auto-merge-on-approval.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/dependabot-auto-merge.yml | 2 +- .github/workflows/fortress-benchmarks.yml | 2 +- .github/workflows/fortress-code-quality.yml | 6 +++--- .../workflows/fortress-completion-finalize.yml | 2 +- .github/workflows/fortress-completion-report.yml | 2 +- .../workflows/fortress-completion-statistics.yml | 2 +- .github/workflows/fortress-completion-tests.yml | 2 +- .github/workflows/fortress-coverage.yml | 4 ++-- .github/workflows/fortress-pre-commit.yml | 2 +- .github/workflows/fortress-release.yml | 2 +- .github/workflows/fortress-security-scans.yml | 6 +++--- .github/workflows/fortress-setup-config.yml | 2 +- .github/workflows/fortress-test-fuzz.yml | 2 +- .github/workflows/fortress-test-magex.yml | 4 ++-- .github/workflows/fortress-test-matrix.yml | 2 +- .github/workflows/fortress-test-validation.yml | 2 +- .github/workflows/fortress-warm-cache.yml | 5 ++++- .github/workflows/fortress.yml | 2 +- .../workflows/pull-request-management-fork.yml | 2 +- .github/workflows/pull-request-management.yml | 2 +- .github/workflows/scorecard.yml | 2 +- .github/workflows/stale-check.yml | 2 +- .github/workflows/sync-labels.yml | 4 ++-- .vscode/tasks.json | 16 ++++++++++++++++ 29 files changed, 55 insertions(+), 45 deletions(-) diff --git a/.github/.env.base b/.github/.env.base index 0df31a5..efe0890 100644 --- a/.github/.env.base +++ b/.github/.env.base @@ -232,7 +232,7 @@ REDIS_CACHE_FORCE_PULL=false # Force pull Redis images even when cache # 🪄 MAGE-X CONFIGURATION # ================================================================================================ -MAGE_X_VERSION=v1.7.16 # https://github.com/mrz1836/mage-x/releases +MAGE_X_VERSION=v1.8.0 # https://github.com/mrz1836/mage-x/releases MAGE_X_USE_LOCAL=false # Use local version for development MAGE_X_AUTO_DISCOVER_BUILD_TAGS=true # Enable auto-discovery of build tags MAGE_X_AUTO_DISCOVER_BUILD_TAGS_EXCLUDE=race,custom # Comma-separated list of tags to exclude diff --git a/.github/actions/warm-cache/action.yml b/.github/actions/warm-cache/action.yml index 3ffe7c3..b6f0f96 100644 --- a/.github/actions/warm-cache/action.yml +++ b/.github/actions/warm-cache/action.yml @@ -66,12 +66,6 @@ runs: echo "$key=$value" >> $GITHUB_ENV done - # -------------------------------------------------------------------- - # Checkout code to access local actions (setup-go-with-cache, setup-magex) - # -------------------------------------------------------------------- - - name: 📥 Checkout code - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - # -------------------------------------------------------------------- # Set environment variables # -------------------------------------------------------------------- diff --git a/.github/sweep.yaml b/.github/sweep.yaml index b5cb9ea..a1217dc 100644 --- a/.github/sweep.yaml +++ b/.github/sweep.yaml @@ -1,5 +1,4 @@ gha_enabled: true -branch: master blocked_dirs: [] draft: false description: | @@ -7,10 +6,8 @@ description: | rules: - "Read .github/AGENTS.md first; it overrides these rules." - "Format code with magex format:fix" - - "Lint with 'magex lint' and vet with 'magex vet'" + - "Lint with 'magex lint'" - "Run 'magex test' before committing" - - "Commit messages use '(): '" - - "PR titles use '[Subsystem] Imperative and concise summary'" - - "PR descriptions include: What Changed, Why It Was Necessary, Testing Performed, Impact / Risk" - - "Run 'magex dep:tidy' after import changes" + - "Commit messages refer to AGENTS.md" + - "Run 'magex deps:tidy' after import changes" - "Report vulnerabilities privately following SECURITY.md" diff --git a/.github/workflows/auto-merge-on-approval.yml b/.github/workflows/auto-merge-on-approval.yml index f92e5f6..4f9d086 100644 --- a/.github/workflows/auto-merge-on-approval.yml +++ b/.github/workflows/auto-merge-on-approval.yml @@ -65,7 +65,7 @@ jobs: # Check out code to access env file # -------------------------------------------------------------------- - name: 📥 Checkout code (sparse) - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: sparse-checkout: | .github/.env.base diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index bd587bb..f4a2876 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -43,7 +43,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index c441ee5..da04f63 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -62,7 +62,7 @@ jobs: # Check out code to access env file # -------------------------------------------------------------------- - name: 📥 Checkout code (sparse) - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: sparse-checkout: | .github/.env.base diff --git a/.github/workflows/fortress-benchmarks.yml b/.github/workflows/fortress-benchmarks.yml index 8bda9b6..c57e66b 100644 --- a/.github/workflows/fortress-benchmarks.yml +++ b/.github/workflows/fortress-benchmarks.yml @@ -128,7 +128,7 @@ jobs: # Checkout code and set up Go environment # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Setup Go with caching and version management diff --git a/.github/workflows/fortress-code-quality.yml b/.github/workflows/fortress-code-quality.yml index 7894737..0271208 100644 --- a/.github/workflows/fortress-code-quality.yml +++ b/.github/workflows/fortress-code-quality.yml @@ -70,7 +70,7 @@ jobs: # Checkout code (required for local actions) # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables @@ -216,7 +216,7 @@ jobs: # Checkout code (required for local actions) # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables @@ -431,7 +431,7 @@ jobs: # Checkout code (required for local actions) # -------------------------------------------------------------------- - name: 📥 Checkout repository - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables diff --git a/.github/workflows/fortress-completion-finalize.yml b/.github/workflows/fortress-completion-finalize.yml index 3460f7a..f1c2c69 100644 --- a/.github/workflows/fortress-completion-finalize.yml +++ b/.github/workflows/fortress-completion-finalize.yml @@ -60,7 +60,7 @@ jobs: # Checkout repository for local actions # -------------------------------------------------------------------- - name: 📥 Checkout Repository - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse inputs and setup diff --git a/.github/workflows/fortress-completion-report.yml b/.github/workflows/fortress-completion-report.yml index a27ca37..61e2b60 100644 --- a/.github/workflows/fortress-completion-report.yml +++ b/.github/workflows/fortress-completion-report.yml @@ -116,7 +116,7 @@ jobs: # Checkout repository for local actions # -------------------------------------------------------------------- - name: 📥 Checkout Repository - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables diff --git a/.github/workflows/fortress-completion-statistics.yml b/.github/workflows/fortress-completion-statistics.yml index 6569795..23d9885 100644 --- a/.github/workflows/fortress-completion-statistics.yml +++ b/.github/workflows/fortress-completion-statistics.yml @@ -64,7 +64,7 @@ jobs: # Checkout repository for local actions # -------------------------------------------------------------------- - name: 📥 Checkout Repository - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables diff --git a/.github/workflows/fortress-completion-tests.yml b/.github/workflows/fortress-completion-tests.yml index 54222d6..84ffc78 100644 --- a/.github/workflows/fortress-completion-tests.yml +++ b/.github/workflows/fortress-completion-tests.yml @@ -60,7 +60,7 @@ jobs: # Checkout repository for local actions # -------------------------------------------------------------------- - name: 📥 Checkout Repository - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables diff --git a/.github/workflows/fortress-coverage.yml b/.github/workflows/fortress-coverage.yml index b93a226..afbbf62 100644 --- a/.github/workflows/fortress-coverage.yml +++ b/.github/workflows/fortress-coverage.yml @@ -158,7 +158,7 @@ jobs: echo "✅ Branch helper functions created" - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: fetch-depth: 0 # Fetch all history including tags for version display @@ -2338,7 +2338,7 @@ jobs: done - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: fetch-depth: 2 # Need history for codecov to detect changes diff --git a/.github/workflows/fortress-pre-commit.yml b/.github/workflows/fortress-pre-commit.yml index f0f4421..500aca4 100644 --- a/.github/workflows/fortress-pre-commit.yml +++ b/.github/workflows/fortress-pre-commit.yml @@ -61,7 +61,7 @@ jobs: # Checkout code (full checkout to ensure local actions are available) # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: fetch-depth: 0 # Fetch full history to enable file change detection for all commit ranges diff --git a/.github/workflows/fortress-release.yml b/.github/workflows/fortress-release.yml index 10ffac9..aa1bffc 100644 --- a/.github/workflows/fortress-release.yml +++ b/.github/workflows/fortress-release.yml @@ -62,7 +62,7 @@ jobs: # Checkout code and set up Go environment # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: fetch-depth: 0 # Required for changelog generation token: ${{ secrets.github-token }} diff --git a/.github/workflows/fortress-security-scans.yml b/.github/workflows/fortress-security-scans.yml index fe489b1..8239687 100644 --- a/.github/workflows/fortress-security-scans.yml +++ b/.github/workflows/fortress-security-scans.yml @@ -75,7 +75,7 @@ jobs: # Checkout code (required for local actions) # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables @@ -192,7 +192,7 @@ jobs: # Checkout code (required for local actions) # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables @@ -345,7 +345,7 @@ jobs: # Checkout code (required for local actions) # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: fetch-depth: 0 # Fetch all history so Gitleaks can scan commits diff --git a/.github/workflows/fortress-setup-config.yml b/.github/workflows/fortress-setup-config.yml index e8c99af..f60efc4 100644 --- a/.github/workflows/fortress-setup-config.yml +++ b/.github/workflows/fortress-setup-config.yml @@ -301,7 +301,7 @@ jobs: # Checkout code (sparse checkout) # -------------------------------------------------------------------- - name: 📥 Checkout (sparse) - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: sparse-checkout: | .mage.yaml diff --git a/.github/workflows/fortress-test-fuzz.yml b/.github/workflows/fortress-test-fuzz.yml index 057c1eb..ec03b03 100644 --- a/.github/workflows/fortress-test-fuzz.yml +++ b/.github/workflows/fortress-test-fuzz.yml @@ -66,7 +66,7 @@ jobs: # Checkout code (required for local actions) # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables diff --git a/.github/workflows/fortress-test-magex.yml b/.github/workflows/fortress-test-magex.yml index 9360e89..469e643 100644 --- a/.github/workflows/fortress-test-magex.yml +++ b/.github/workflows/fortress-test-magex.yml @@ -52,14 +52,14 @@ jobs: # Full checkout when using local build (needs cmd/magex directory) - name: 📥 Checkout (full - local build) if: env.MAGE_X_USE_LOCAL == 'true' - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: fetch-depth: 0 # Sparse checkout when using remote build (optimization) - name: 📥 Checkout (sparse - remote build) if: env.MAGE_X_USE_LOCAL == 'false' - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: fetch-depth: 0 # Required for sparse checkout sparse-checkout: | diff --git a/.github/workflows/fortress-test-matrix.yml b/.github/workflows/fortress-test-matrix.yml index d373114..c438b1e 100644 --- a/.github/workflows/fortress-test-matrix.yml +++ b/.github/workflows/fortress-test-matrix.yml @@ -125,7 +125,7 @@ jobs: # Checkout code (required for local actions) # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables diff --git a/.github/workflows/fortress-test-validation.yml b/.github/workflows/fortress-test-validation.yml index 19925f8..d64209d 100644 --- a/.github/workflows/fortress-test-validation.yml +++ b/.github/workflows/fortress-test-validation.yml @@ -55,7 +55,7 @@ jobs: # Checkout code (required for local actions) # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 # -------------------------------------------------------------------- # Parse environment variables diff --git a/.github/workflows/fortress-warm-cache.yml b/.github/workflows/fortress-warm-cache.yml index e339002..7db1b62 100644 --- a/.github/workflows/fortress-warm-cache.yml +++ b/.github/workflows/fortress-warm-cache.yml @@ -80,12 +80,15 @@ jobs: # Checkout code to access local action # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: + persist-credentials: false sparse-checkout: | .github/actions/warm-cache .github/actions/warm-redis-cache .github/actions/cache-redis-image + .github/actions/setup-go-with-cache + .github/actions/setup-magex .github/.env.base go.mod ${{ env.GO_SUM_FILE }} diff --git a/.github/workflows/fortress.yml b/.github/workflows/fortress.yml index d37378b..a32e962 100644 --- a/.github/workflows/fortress.yml +++ b/.github/workflows/fortress.yml @@ -92,7 +92,7 @@ jobs: # Check out code to access env file # -------------------------------------------------------------------- - name: 📥 Checkout code (sparse) - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: sparse-checkout: | .github/.env.base diff --git a/.github/workflows/pull-request-management-fork.yml b/.github/workflows/pull-request-management-fork.yml index 1e41d22..3209a6b 100644 --- a/.github/workflows/pull-request-management-fork.yml +++ b/.github/workflows/pull-request-management-fork.yml @@ -141,7 +141,7 @@ jobs: # codeql:ignore GH001 # checkov:skip=CKV_GHA_3:Base branch checkout is intentional and safe - name: 📥 Checkout base repo (sparse) - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ # 🔒 CRITICAL SECURITY CONTROL: Base Branch Checkout Only diff --git a/.github/workflows/pull-request-management.yml b/.github/workflows/pull-request-management.yml index 38a92b5..1bcb806 100644 --- a/.github/workflows/pull-request-management.yml +++ b/.github/workflows/pull-request-management.yml @@ -68,7 +68,7 @@ jobs: # Check out code to access env file # -------------------------------------------------------------------- - name: 📥 Checkout code (sparse) - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: sparse-checkout: | .github/.env.base diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 6ce4a14..1fb16be 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -39,7 +39,7 @@ jobs: steps: - name: "Checkout code" - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false diff --git a/.github/workflows/stale-check.yml b/.github/workflows/stale-check.yml index f61afd5..5c9fb37 100644 --- a/.github/workflows/stale-check.yml +++ b/.github/workflows/stale-check.yml @@ -52,7 +52,7 @@ jobs: # Check out code to access env file # -------------------------------------------------------------------- - name: 📥 Checkout code (sparse) - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: sparse-checkout: | .github/.env.base diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index eafe183..1de86e9 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -65,7 +65,7 @@ jobs: # Check out code to access env file # -------------------------------------------------------------------- - name: 📥 Checkout code (sparse) - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: sparse-checkout: | .github/.env.base @@ -135,7 +135,7 @@ jobs: # Checkout repository # -------------------------------------------------------------------- - name: 📥 Checkout code - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: fetch-depth: 2 # Fetch enough history to check parent commits diff --git a/.vscode/tasks.json b/.vscode/tasks.json index fde9b08..21fed15 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -588,6 +588,22 @@ ], "type": "shell" }, + { + "command": "magex deps:update all-modules verbose", + "detail": "Update dependencies across all modules", + "group": "none", + "label": "magex: deps:update:all-modules", + "presentation": { + "clear": true, + "focus": false, + "panel": "shared", + "reveal": "always" + }, + "problemMatcher": [ + "$go" + ], + "type": "shell" + }, { "command": "magex deps:audit", "detail": "Audit dependencies for known security vulnerabilities",