Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ tmp
.golangci.yml
.goreleaser.yml
.vscode
docs
LICENSE
README.md
codecov.yml
2 changes: 1 addition & 1 deletion .github/env/10-coverage.env
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ GO_COVERAGE_PROVIDER=internal
CODECOV_TOKEN_REQUIRED=false

# Go Coverage Tool Version
GO_COVERAGE_VERSION=v1.3.5
GO_COVERAGE_VERSION=v1.3.6
GO_COVERAGE_USE_LOCAL=false

# ================================================================================================
Expand Down
4 changes: 2 additions & 2 deletions .github/env/10-mage-x.env
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# ================================================================================================

# MAGE-X version
MAGE_X_VERSION=v1.20.4
MAGE_X_VERSION=v1.20.7

# For mage-x development, set to 'true' to use local version instead of downloading from releases
MAGE_X_USE_LOCAL=false
Expand All @@ -61,7 +61,7 @@ MAGE_X_FORMAT_EXCLUDE_PATHS=vendor,node_modules,.git,.idea

MAGE_X_GITLEAKS_VERSION=8.30.0
MAGE_X_GOFUMPT_VERSION=v0.9.2
MAGE_X_GOLANGCI_LINT_VERSION=v2.9.0
MAGE_X_GOLANGCI_LINT_VERSION=v2.10.1
MAGE_X_GORELEASER_VERSION=v2.13.3
MAGE_X_GOVULNCHECK_VERSION=v1.1.4
MAGE_X_GO_SECONDARY_VERSION=1.24.x
Expand Down
2 changes: 1 addition & 1 deletion .github/env/10-pre-commit.env
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ GO_PRE_COMMIT_ALL_FILES=true
# 🛠️ TOOL VERSIONS
# ================================================================================================

GO_PRE_COMMIT_GOLANGCI_LINT_VERSION=v2.9.0
GO_PRE_COMMIT_GOLANGCI_LINT_VERSION=v2.10.1
GO_PRE_COMMIT_FUMPT_VERSION=v0.9.2
GO_PRE_COMMIT_GOIMPORTS_VERSION=latest
GO_PRE_COMMIT_GITLEAKS_VERSION=v8.30.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fortress-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2382,7 +2382,7 @@ jobs:
with:
name: coverage-stats-internal
path: coverage-stats-internal-*.json
retention-days: 1
retention-days: 7

# --------------------------------------------------------------------
# Upload coverage history for future runs (WORKING SYSTEM - PRESERVED)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fortress-test-fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,5 +257,5 @@ jobs:
path: |
.mage-x/ci-results-fuzz.jsonl
fuzz-output.log
retention-days: 1
retention-days: 7
if-no-files-found: ignore
4 changes: 2 additions & 2 deletions .github/workflows/fortress-test-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ jobs:
path: |
.mage-x/ci-results.jsonl
test-output.log
retention-days: 1
retention-days: 7
if-no-files-found: ignore

# --------------------------------------------------------------------
Expand Down Expand Up @@ -446,4 +446,4 @@ jobs:
with:
name: coverage-data
path: coverage.txt
retention-days: 1
retention-days: 7
2 changes: 1 addition & 1 deletion .github/workflows/fortress-test-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -416,5 +416,5 @@ jobs:
with:
name: validation-summary
path: ci-results/
retention-days: 1
retention-days: 7
if-no-files-found: ignore
6 changes: 3 additions & 3 deletions .github/workflows/pull-request-management-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
name: 🌍 Load Environment (Base Repo)
runs-on: ubuntu-latest
# Only run for fork PRs - same-repo PRs are handled by pull-request-management.yml
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
if: ${{ github.event.pull_request.head.repo && github.event.pull_request.head.repo.full_name != github.repository }}
# No write perms here
permissions:
contents: read
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
name: 🔍 Detect Fork PR
runs-on: ubuntu-latest
# Only run for fork PRs - same-repo PRs are handled by pull-request-management.yml
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
if: ${{ github.event.pull_request.head.repo && github.event.pull_request.head.repo.full_name != github.repository }}
permissions:
contents: read
outputs:
Expand Down Expand Up @@ -481,7 +481,7 @@ jobs:
name: 📊 Summary
runs-on: ubuntu-latest
# Only run for fork PRs, but always show summary regardless of job status
if: always() && github.event.pull_request.head.repo.full_name != github.repository
if: always() && github.event.pull_request.head.repo && github.event.pull_request.head.repo.full_name != github.repository
needs: [load-env, detect-fork, handle-fork, clean-cache]
steps:
- name: 📄 Write summary
Expand Down