From 1b334065d14fc20ac8460a4dee3856f0d93d6b29 Mon Sep 17 00:00:00 2001 From: hyperpolymath <6759885+hyperpolymath@users.noreply.github.com> Date: Wed, 27 May 2026 11:48:40 +0100 Subject: [PATCH] fix(ci): repin setup-racket to actual v1.15 SHA (was orphan) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `.github/workflows/test.yml` pinned `Bogdanp/setup-racket@67838a16…` — a SHA that no longer exists in the upstream repo (`HTTP 422 No commit found`). Every Racket Test (8.11, 8.12, current) failed with `Unable to resolve action ... unable to find version 67838a16f2122684177c86729eb9cf0438ec677b` before any test could run. The actual SHA for the `v1.15` tag is `2466913449df77df2bad149d1f2fc4e1ea4795dd` (verified via `gh api repos/Bogdanp/setup-racket/git/ref/tags/v1.15`). The `# v1.15` comment is preserved as the human-readable tag pointer. This is the second orphan-SHA pin found in this repo today; the first was the hypatia-scan-reusable pin fixed in #42. Sibling pattern to the estate-wide audit in standards#220. After this lands, the Racket tests will actually run (and may or may not pass — but they will at least execute, instead of failing in setup). --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7f54c8d..bd0afdd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - name: Setup Racket - uses: Bogdanp/setup-racket@67838a16f2122684177c86729eb9cf0438ec677b # v1.15 + uses: Bogdanp/setup-racket@2466913449df77df2bad149d1f2fc4e1ea4795dd # v1.15 with: version: ${{ matrix.racket-version }} packages: 'rackunit' @@ -75,7 +75,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - name: Setup Racket - uses: Bogdanp/setup-racket@67838a16f2122684177c86729eb9cf0438ec677b # v1.15 + uses: Bogdanp/setup-racket@2466913449df77df2bad149d1f2fc4e1ea4795dd # v1.15 with: version: 'current'