Skip to content

Commit f17818b

Browse files
authored
sync(ci): update GitHub Actions to v6.0.3 and Go 1.26.4 (#99)
1 parent 5dbbdb1 commit f17818b

21 files changed

Lines changed: 34 additions & 34 deletions

.github/actions/warm-cache/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ runs:
267267
# ────────────────────────────────────────────────────────────────────────────
268268
- name: 📥 Full checkout for module download (module cache miss)
269269
if: steps.setup-go.outputs.module-cache-hit != 'true'
270-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
270+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
271271
with:
272272
persist-credentials: false
273273

@@ -306,7 +306,7 @@ runs:
306306
# ────────────────────────────────────────────────────────────────────────────
307307
- name: 📥 Full checkout for build warming (module hit, build miss)
308308
if: steps.setup-go.outputs.module-cache-hit == 'true' && steps.setup-go.outputs.build-cache-hit != 'true'
309-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
309+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
310310
with:
311311
persist-credentials: false
312312

.github/env/00-core.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ GO_PRIMARY_VERSION=1.24.x
2929
GO_SECONDARY_VERSION=1.24.x
3030

3131
# Govulncheck-specific Go version for vulnerability scanning
32-
GOVULNCHECK_GO_VERSION=1.26.3
32+
GOVULNCHECK_GO_VERSION=1.26.4
3333

3434
# ================================================================================================
3535
# 📦 GO MODULE CONFIGURATION

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
# empty on pull_request_review, where `github.ref` is refs/pull/<n>/merge (PR-controlled).
9999
# Read the base branch directly from the event payload so it is the trusted base ref for
100100
# BOTH triggers. Env files and the action are not modified there, so base-ref loading is safe.
101-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
101+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
102102
with:
103103
ref: ${{ github.event.pull_request.base.ref }}
104104
persist-credentials: false

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
46+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
4747
with:
4848
persist-credentials: false
4949

5050
# Initializes the CodeQL tools for scanning.
5151
- name: Initialize CodeQL
52-
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
52+
uses: github/codeql-action/init@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
5353
with:
5454
languages: ${{ matrix.language }}
5555
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -60,7 +60,7 @@ jobs:
6060
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6161
# If this step fails, then you should remove it and run the build manually (see below)
6262
- name: Autobuild
63-
uses: github/codeql-action/autobuild@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
63+
uses: github/codeql-action/autobuild@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
6464

6565
# ℹ️ Command-line programs to run using the OS shell.
6666
# 📚 https://git.io/JvXDl
@@ -70,4 +70,4 @@ jobs:
7070
# uses a compiled language
7171

7272
- name: Perform CodeQL Analysis
73-
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
73+
uses: github/codeql-action/analyze@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
# write) can never be a PR-controlled version. Default checkout on pull_request
9595
# events resolves to the PR head. Lower risk here (job is gated to dependabot[bot]),
9696
# but pinned for defense-in-depth and consistency with the other PR workflows.
97-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
97+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
9898
with:
9999
ref: ${{ github.base_ref || github.ref }}
100100
persist-credentials: false

.github/workflows/fortress-benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
# Checkout code and set up Go environment
130130
# --------------------------------------------------------------------
131131
- name: 📥 Checkout code
132-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
132+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
133133
with:
134134
persist-credentials: false
135135

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# Shared setup
8181
# --------------------------------------------------------------------
8282
- name: 📥 Checkout code
83-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
83+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
8484
with:
8585
persist-credentials: false
8686

@@ -449,7 +449,7 @@ jobs:
449449
# Checkout code (required for local actions)
450450
# --------------------------------------------------------------------
451451
- name: 📥 Checkout code
452-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
452+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
453453
with:
454454
persist-credentials: false
455455

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
# Checkout repository for local actions and helper scripts
139139
# --------------------------------------------------------------------
140140
- name: 📥 Checkout Repository
141-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
141+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
142142
with:
143143
persist-credentials: false
144144

.github/workflows/fortress-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
echo "✅ Branch helper functions created"
154154
155155
- name: 📥 Checkout code
156-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
156+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
157157
with:
158158
persist-credentials: false
159159
fetch-depth: 0 # Fetch all history including tags for version display
@@ -2441,7 +2441,7 @@ jobs:
24412441
done
24422442
24432443
- name: 📥 Checkout code
2444-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2444+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
24452445
with:
24462446
persist-credentials: false
24472447
fetch-depth: 2 # Need history for codecov to detect changes

.github/workflows/fortress-pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
# Checkout code (full checkout to ensure local actions are available)
6868
# --------------------------------------------------------------------
6969
- name: 📥 Checkout code
70-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
70+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
7171
with:
7272
persist-credentials: false
7373
fetch-depth: 0 # Fetch full history to enable file change detection for all commit ranges

0 commit comments

Comments
 (0)