Skip to content

Commit 18cbf43

Browse files
authored
sync(ci): update GitHub Actions cache to v5.0.5 (#259)
1 parent 5a0958d commit 18cbf43

10 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/actions/cache-redis-image/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ runs:
126126
- name: 💾 Restore Redis image from cache
127127
if: contains(inputs.cache-mode, 'restore')
128128
id: restore-redis-image
129-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
129+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
130130
with:
131131
path: ${{ steps.cache-config.outputs.cache-path }}
132132
key: ${{ steps.cache-config.outputs.cache-key }}
@@ -222,7 +222,7 @@ runs:
222222
# --------------------------------------------------------------------
223223
- name: 🗄️ Save Redis image cache
224224
if: contains(inputs.cache-mode, 'save') && steps.save-redis-image.outputs.image-saved == 'true' && steps.restore-redis-image.outputs.cache-hit != 'true'
225-
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
225+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
226226
with:
227227
path: ${{ steps.cache-config.outputs.cache-path }}
228228
key: ${{ steps.cache-config.outputs.cache-key }}

.github/actions/setup-benchstat/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ runs:
8787
- name: 💾 Restore benchstat binary cache
8888
if: steps.version-check.outputs.skip != 'true'
8989
id: benchstat-cache
90-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
90+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
9191
with:
9292
path: ~/.cache/benchstat-bin
9393
key: ${{ inputs.runner-os }}-benchstat-${{ inputs.benchstat-version }}

.github/actions/setup-go-with-cache/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ runs:
215215
# --------------------------------------------------------------------
216216
- name: 💾 Go module cache
217217
id: restore-gomod
218-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
218+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
219219
with:
220220
path: ~/go/pkg/mod
221221
key: ${{ steps.cache-keys.outputs.module-key }}
@@ -289,7 +289,7 @@ runs:
289289
# --------------------------------------------------------------------
290290
- name: 💾 Go build cache
291291
id: restore-gobuild
292-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
292+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
293293
with:
294294
path: |
295295
~/.cache/go-build

.github/actions/setup-goreleaser/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ runs:
7272
- name: 💾 Restore goreleaser binary cache
7373
id: goreleaser-cache
7474
if: steps.check-existing.outputs.exists != 'true'
75-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
75+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
7676
with:
7777
path: |
7878
~/.cache/goreleaser-bin
@@ -105,7 +105,7 @@ runs:
105105
# --------------------------------------------------------------------
106106
- name: ✅ Install GoReleaser (cache miss)
107107
if: steps.check-existing.outputs.exists != 'true' && steps.goreleaser-cache.outputs.cache-hit != 'true'
108-
uses: goreleaser/goreleaser-action@ec59f474b9834571250b370d4735c50f8e2d1e29 # v7.0.0
108+
uses: goreleaser/goreleaser-action@e24998b8b67b290c2fa8b7c14fcfa7de2c5c9b8c # v7.1.0
109109
with:
110110
distribution: goreleaser
111111
version: ${{ inputs.goreleaser-version }}

.github/actions/setup-mage/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runs:
4747
# --------------------------------------------------------------------
4848
- name: 💾 Restore mage binary cache
4949
id: mage-cache
50-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
50+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
5151
with:
5252
path: ~/.cache/mage-bin
5353
key: ${{ inputs.runner-os }}-mage-${{ inputs.mage-version }}

.github/actions/setup-magex/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ runs:
5353
- name: 💾 Restore magex binary cache
5454
id: magex-cache
5555
if: inputs.use-local != 'true'
56-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
56+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
5757
with:
5858
path: |
5959
~/.cache/magex-bin
@@ -82,7 +82,7 @@ runs:
8282
- name: 💾 Restore magex binary cache (local)
8383
id: magex-local-cache
8484
if: inputs.use-local == 'true'
85-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
85+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
8686
with:
8787
path: |
8888
~/.cache/magex-local

.github/actions/upload-artifact-resilient/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ runs:
5252
- name: "📤 Upload ${{ inputs.artifact-name }} (attempt 1)"
5353
id: attempt1
5454
continue-on-error: true
55-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
55+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5656
with:
5757
name: ${{ inputs.artifact-name }}
5858
path: ${{ inputs.artifact-path }}
@@ -80,7 +80,7 @@ runs:
8080
id: attempt2
8181
if: steps.attempt1.outcome == 'failure'
8282
continue-on-error: true
83-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
83+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8484
with:
8585
name: ${{ inputs.artifact-name }}
8686
path: ${{ inputs.artifact-path }}
@@ -108,7 +108,7 @@ runs:
108108
id: attempt3
109109
if: steps.attempt1.outcome == 'failure' && steps.attempt2.outcome == 'failure'
110110
continue-on-error: ${{ inputs.continue-on-error == 'true' }}
111-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
111+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
112112
with:
113113
name: ${{ inputs.artifact-name }}
114114
path: ${{ inputs.artifact-path }}

.github/actions/upload-statistics/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ runs:
5959
- name: 📤 Upload ${{ inputs.artifact-name }}
6060
if: always() # Always run to capture data even on job failure
6161
continue-on-error: ${{ inputs.continue-on-error == 'true' }}
62-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
62+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6363
with:
6464
name: ${{ inputs.artifact-name }}
6565
path: ${{ inputs.artifact-path }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ runs:
369369
# ────────────────────────────────────────────────────────────────────────────
370370
- name: 💾 Save Go build cache
371371
if: steps.setup-go.outputs.build-cache-hit != 'true'
372-
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
372+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
373373
with:
374374
path: |
375375
~/.cache/go-build
@@ -381,7 +381,7 @@ runs:
381381
# ────────────────────────────────────────────────────────────────────────────
382382
- name: 💾 Save Go module cache
383383
if: steps.setup-go.outputs.module-cache-hit != 'true'
384-
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
384+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
385385
with:
386386
path: ~/go/pkg/mod
387387
key: ${{ steps.cache-keys.outputs.module-key }}
@@ -446,7 +446,7 @@ runs:
446446
# --------------------------------------------------------------------
447447
- name: 📤 Upload cache statistics
448448
if: always()
449-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
449+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
450450
with:
451451
name: cache-stats-${{ inputs.matrix-os }}-${{ inputs.go-version }}
452452
path: cache-stats-*.json

.github/env/10-mage-x.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ MAGE_X_FORMAT_EXCLUDE_PATHS=vendor,node_modules,.git,.idea
6262
MAGE_X_GITLEAKS_VERSION=8.30.1
6363
MAGE_X_GOFUMPT_VERSION=v0.9.2
6464
MAGE_X_GOLANGCI_LINT_VERSION=v2.11.4
65-
MAGE_X_GORELEASER_VERSION=v2.15.2
65+
MAGE_X_GORELEASER_VERSION=v2.15.3
6666
MAGE_X_GOVULNCHECK_VERSION=v1.1.4
6767
MAGE_X_GO_SECONDARY_VERSION=1.24.x
6868
MAGE_X_GO_VERSION=1.24.x
@@ -71,7 +71,7 @@ MAGE_X_NANCY_VERSION=v1.2.0
7171
MAGE_X_STATICCHECK_VERSION=2026.1
7272
MAGE_X_SWAG_VERSION=v1.16.6
7373
MAGE_X_YAMLFMT_VERSION=v0.21.0
74-
MAGE_X_BENCHSTAT_VERSION=v0.0.0-20260312031701-16a31bc5fbd0
74+
MAGE_X_BENCHSTAT_VERSION=v0.0.0-20260409210113-8e83ce0f7b1c
7575
MAGE_X_MAGE_VERSION=v1.17.1
7676

7777
# ================================================================================================

0 commit comments

Comments
 (0)