Skip to content

Commit dba274c

Browse files
fix(ci): sweep fake action SHA pins from e2e.yml template stubs (#50)
## Summary Sweeps fake action SHA pins inherited from the rsr-template-repo `e2e.yml` template. All 4 fake SHAs in this file were template comment stubs (inert until uncommented), but the same pattern propagated to ~20 repos across the estate via the RSR copy-and-customise flow. ## Replaced | Action | Fake SHA | Real SHA | Tag | |---|---|---|---| | `goto-bus-stop/setup-zig` | `7ab2955...3608` (partial collision with v2.2.0) | `abea47f85e598557f500fa1fd2ab7464fcb39406` | v2.2.1 | | `erlef/setup-beam` | `5a67e1a...a66c07` | `fc68ffb90438ef2936bbb3251622353b3dcb2f93` | v1.24.0 | | `denoland/setup-deno` | `5fae568...c3497` | `667a34cdef165d8d2b2e98dde39547c9daac7282` | v2.0.4 | | `haskell-actions/setup` | `dd344bc...3a40fce` | `cd0d9bdd65b20557f41bea4dbe43d0b5fbbfe553` | v2.11.0 | All real SHAs verified via `gh api repos/<org>/<action>/commits/<sha>`. ## Provenance - Discovered: wiring CI for `hyperpolymath/snifs#30` - Template source fixed: `hyperpolymath/rsr-template-repo#81` (merged) - Standards consolidation: `hyperpolymath/standards#289` (in flight) - Per-repo fan-out: this PR is part of the sweep across affected estate repos ## Test plan - [ ] Diff shows only template-comment SHA substitutions (no functional change in this repo since the lines were already commented) - [ ] If anyone later uncomments a template stub, the action resolves instead of 422'ing
1 parent aa12daf commit dba274c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
# timeout-minutes: 15
6161
# steps:
6262
# - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
63-
# - uses: goto-bus-stop/setup-zig@7ab2955eb728f5440978d7b4f723a50dea1f3608 # v2
63+
# - uses: goto-bus-stop/setup-zig@abea47f85e598557f500fa1fd2ab7464fcb39406 # v2.2.1
6464
# with:
6565
# version: 0.15.0
6666
# - run: cd ffi/zig && zig build test
@@ -73,7 +73,7 @@ jobs:
7373
# timeout-minutes: 15
7474
# steps:
7575
# - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
76-
# - uses: erlef/setup-beam@5a67e1a1dd86cae5e5bef84e2da5060406a66c07 # v1
76+
# - uses: erlef/setup-beam@fc68ffb90438ef2936bbb3251622353b3dcb2f93 # v1.24.0
7777
# with:
7878
# otp-version: '27.0'
7979
# elixir-version: '1.17'
@@ -87,7 +87,7 @@ jobs:
8787
# timeout-minutes: 15
8888
# steps:
8989
# - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
90-
# - uses: denoland/setup-deno@5fae568d37c3b73e0e4ca63d4e2c4e324a2b3497 # v2
90+
# - uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4
9191
# with:
9292
# deno-version: v2.x
9393
# - run: deno install --node-modules-dir=auto
@@ -105,7 +105,7 @@ jobs:
105105
# project: [chromium-1080p, firefox-1080p, webkit-1080p]
106106
# steps:
107107
# - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
108-
# - uses: denoland/setup-deno@5fae568d37c3b73e0e4ca63d4e2c4e324a2b3497 # v2
108+
# - uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4
109109
# with:
110110
# deno-version: v2.x
111111
# - run: deno install --node-modules-dir=auto
@@ -125,7 +125,7 @@ jobs:
125125
# timeout-minutes: 15
126126
# steps:
127127
# - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
128-
# - uses: haskell-actions/setup@dd344bc1cec854a9b55c2b857c28b688010e4fce # v2
128+
# - uses: haskell-actions/setup@cd0d9bdd65b20557f41bea4dbe43d0b5fbbfe553 # v2.11.0
129129
# with:
130130
# ghc-version: '9.6'
131131
# cabal-version: '3.10'
@@ -171,7 +171,7 @@ jobs:
171171
# timeout-minutes: 15
172172
# steps:
173173
# - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
174-
# - uses: goto-bus-stop/setup-zig@7ab2955eb728f5440978d7b4f723a50dea1f3608 # v2
174+
# - uses: goto-bus-stop/setup-zig@abea47f85e598557f500fa1fd2ab7464fcb39406 # v2.2.1
175175
# with:
176176
# version: 0.15.0
177177
# - run: cd ffi/zig && zig build bench

0 commit comments

Comments
 (0)