Skip to content

Commit 476f669

Browse files
authored
[Sync] Update project files from source repository (3f8e53a) (#252)
1 parent 728d601 commit 476f669

26 files changed

+46
-38
lines changed

.github/.env.base

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

235-
MAGE_X_VERSION=v1.7.13 # https://github.com/mrz1836/mage-x/releases
235+
MAGE_X_VERSION=v1.7.15 # 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
239239
MAGE_X_FORMAT_EXCLUDE_PATHS=vendor,node_modules,.git,.idea # Format exclusion paths (comma-separated directories to exclude from formatting)
240240
MAGE_X_GITLEAKS_VERSION=8.29.0 # https://github.com/gitleaks/gitleaks/releases
241241
MAGE_X_GOFUMPT_VERSION=v0.9.2 # https://github.com/mvdan/gofumpt/releases
242-
MAGE_X_GOLANGCI_LINT_VERSION=v2.6.1 # https://github.com/golangci/golangci-lint/releases
242+
MAGE_X_GOLANGCI_LINT_VERSION=v2.6.2 # https://github.com/golangci/golangci-lint/releases
243243
MAGE_X_GORELEASER_VERSION=v2.12.7 # https://github.com/goreleaser/goreleaser/releases
244-
MAGE_X_GOVULNCHECK_VERSION=v1.1.4 # https://pkg.go.dev/golang.org/x/vuln
244+
MAGE_X_GOVULNCHECK_VERSION=v1.1.4 # https://go.googlesource.com/vuln/+refs
245245
MAGE_X_GO_SECONDARY_VERSION=1.24.x # Secondary Go version for MAGE-X (also our secondary)
246246
MAGE_X_GO_VERSION=1.24.x # Primary Go version for MAGE-X (also our primary)
247247
MAGE_X_MOCKGEN_VERSION=v0.6.0 # https://github.com/uber-go/mock/releases
@@ -300,7 +300,7 @@ NANCY_VERSION=v1.0.51 # https://github.com/sonatype-nexus-commu
300300
# ================================================================================================
301301

302302
# Pre-Commit System
303-
GO_PRE_COMMIT_VERSION=v1.4.1 # https://github.com/mrz1836/go-pre-commit/releases
303+
GO_PRE_COMMIT_VERSION=v1.4.2 # https://github.com/mrz1836/go-pre-commit/releases
304304
GO_PRE_COMMIT_USE_LOCAL=false # Use local version for development
305305

306306
# System Settings
@@ -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 # https://github.com/golangci/golangci-lint/releases
322+
GO_PRE_COMMIT_GOLANGCI_LINT_VERSION=v2.6.2 # 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
GO_PRE_COMMIT_GITLEAKS_VERSION=v8.29.0 # https://github.com/gitleaks/gitleaks/releases

.github/workflows/auto-merge-on-approval.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
# Check out code to access env file
6666
# --------------------------------------------------------------------
6767
- name: 📥 Checkout code (sparse)
68-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
68+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
6969
with:
7070
sparse-checkout: |
7171
.github/.env.base

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
46+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
4747

4848
# Initializes the CodeQL tools for scanning.
4949
- name: Initialize CodeQL

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
# Check out code to access env file
6363
# --------------------------------------------------------------------
6464
- name: 📥 Checkout code (sparse)
65-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
65+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
6666
with:
6767
sparse-checkout: |
6868
.github/.env.base

.github/workflows/fortress-benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
# Checkout code and set up Go environment
129129
# --------------------------------------------------------------------
130130
- name: 📥 Checkout code
131-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
131+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
132132

133133
# --------------------------------------------------------------------
134134
# Setup Go with caching and version management

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
# Checkout code (required for local actions)
7171
# --------------------------------------------------------------------
7272
- name: 📥 Checkout code
73-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
73+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
7474

7575
# --------------------------------------------------------------------
7676
# Parse environment variables
@@ -216,7 +216,7 @@ jobs:
216216
# Checkout code (required for local actions)
217217
# --------------------------------------------------------------------
218218
- name: 📥 Checkout code
219-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
219+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
220220

221221
# --------------------------------------------------------------------
222222
# Parse environment variables
@@ -371,7 +371,7 @@ jobs:
371371
# Checkout code (required for local actions)
372372
# --------------------------------------------------------------------
373373
- name: 📥 Checkout repository
374-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
374+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
375375

376376
# --------------------------------------------------------------------
377377
# Parse environment variables

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
# Checkout repository for local actions
6161
# --------------------------------------------------------------------
6262
- name: 📥 Checkout Repository
63-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
63+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
6464

6565
# --------------------------------------------------------------------
6666
# Parse inputs and setup

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
# Checkout repository for local actions
117117
# --------------------------------------------------------------------
118118
- name: 📥 Checkout Repository
119-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
119+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
120120

121121
# --------------------------------------------------------------------
122122
# Parse environment variables

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# Checkout repository for local actions
6565
# --------------------------------------------------------------------
6666
- name: 📥 Checkout Repository
67-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
67+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
6868

6969
# --------------------------------------------------------------------
7070
# Parse environment variables

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
# Checkout repository for local actions
6161
# --------------------------------------------------------------------
6262
- name: 📥 Checkout Repository
63-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
63+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
6464

6565
# --------------------------------------------------------------------
6666
# Parse environment variables

0 commit comments

Comments
 (0)