Skip to content

Commit fa05c63

Browse files
authored
sync: update 4 files from source repository (#46)
1 parent 878dae0 commit fa05c63

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/.env.base

Lines changed: 2 additions & 2 deletions
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.10 # https://github.com/mrz1836/mage-x/releases
235+
MAGE_X_VERSION=v1.7.12 # 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
@@ -319,7 +319,7 @@ GO_PRE_COMMIT_MAX_FILES_OPEN=100
319319
GO_PRE_COMMIT_ALL_FILES=true
320320

321321
# Tool Versions
322-
GO_PRE_COMMIT_GOLANGCI_LINT_VERSION=v2.6.1 # hhttps://github.com/golangci/golangci-lint/releases
322+
GO_PRE_COMMIT_GOLANGCI_LINT_VERSION=v2.6.1 # https://github.com/golangci/golangci-lint/releases
323323
GO_PRE_COMMIT_FUMPT_VERSION=v0.9.2 # https://github.com/mvdan/gofumpt/releases
324324
GO_PRE_COMMIT_GOIMPORTS_VERSION=latest # https://github.com/golang/tools
325325

.github/workflows/fortress-code-quality.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ jobs:
206206
# ----------------------------------------------------------------------------------
207207
lint:
208208
name: ✨ Lint Code
209+
timeout-minutes: 20
209210
if: ${{ inputs.go-lint-enabled == 'true' }}
210211
runs-on: ${{ inputs.primary-runner }}
211212
outputs:

.github/workflows/fortress-completion-statistics.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
# Download specific artifacts needed for statistics processing
101101
# --------------------------------------------------------------------
102102
- name: 📥 Download test statistics
103-
if: always()
103+
if: always() && env.ENABLE_GO_TESTS == 'true'
104104
uses: ./.github/actions/download-artifact-resilient
105105
with:
106106
pattern: "test-stats-*"
@@ -136,7 +136,7 @@ jobs:
136136
continue-on-error: ${{ env.ARTIFACT_DOWNLOAD_CONTINUE_ON_ERROR }}
137137

138138
- name: 📥 Download internal coverage statistics
139-
if: always() && env.GO_COVERAGE_PROVIDER == 'internal'
139+
if: always() && env.ENABLE_GO_TESTS == 'true' && env.GO_COVERAGE_PROVIDER == 'internal'
140140
uses: ./.github/actions/download-artifact-resilient
141141
with:
142142
pattern: "coverage-stats-internal"
@@ -148,7 +148,7 @@ jobs:
148148
continue-on-error: true
149149

150150
- name: 📥 Download codecov coverage statistics
151-
if: always() && env.GO_COVERAGE_PROVIDER == 'codecov'
151+
if: always() && env.ENABLE_GO_TESTS == 'true' && env.GO_COVERAGE_PROVIDER == 'codecov'
152152
uses: ./.github/actions/download-artifact-resilient
153153
with:
154154
pattern: "coverage-stats-codecov"

.github/workflows/fortress-completion-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
# Download specific artifacts needed for test analysis
7979
# --------------------------------------------------------------------
8080
- name: 📥 Download test statistics
81-
if: always()
81+
if: always() && env.ENABLE_GO_TESTS == 'true'
8282
uses: ./.github/actions/download-artifact-resilient
8383
with:
8484
pattern: "test-stats-*"
@@ -114,7 +114,7 @@ jobs:
114114
continue-on-error: ${{ env.ARTIFACT_DOWNLOAD_CONTINUE_ON_ERROR }}
115115

116116
- name: 📥 Download test failure artifacts
117-
if: always()
117+
if: always() && env.ENABLE_GO_TESTS == 'true'
118118
uses: ./.github/actions/download-artifact-resilient
119119
with:
120120
pattern: "test-results-unit-*"
@@ -126,7 +126,7 @@ jobs:
126126
continue-on-error: ${{ env.ARTIFACT_DOWNLOAD_CONTINUE_ON_ERROR }}
127127

128128
- name: 📥 Download fuzz test failure artifacts
129-
if: always()
129+
if: always() && env.ENABLE_GO_TESTS == 'true' && env.ENABLE_FUZZ_TESTING == 'true'
130130
uses: ./.github/actions/download-artifact-resilient
131131
with:
132132
pattern: "test-results-fuzz-*"

0 commit comments

Comments
 (0)