From 409bf99d5f03de7c5948da6b2be2714ed7ee4737 Mon Sep 17 00:00:00 2001 From: nicodes Date: Sat, 1 Aug 2026 02:46:13 -0600 Subject: [PATCH] Pin gdam-actions to v0.1.2 gdam-actions has stopped force-moving a single v0 tag -- releases are immutable v0.1.x now -- so @v0 is frozen at the commit before that change and will never see another fix. The fix that matters here is in install: resolving "latest" called the GitHub API unauthenticated, which is capped at 60 requests an hour per IP address, and CI runners share addresses. macOS runners share them heavily enough that the call returned 403 several times an hour and failed the install. As of v0.1.2 it authenticates with the workflow own token by default, scoping the limit per repository against one lookup per run. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 471d5c3..2874aee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -84,10 +84,10 @@ jobs: run: gh release create "$TAG" dist/*.zip --target "$GITHUB_SHA" --title "$TAG" --notes "Release $TAG" - name: Install GDAM - uses: aviorstudio/gdam-actions/install@v0 + uses: aviorstudio/gdam-actions/install@v0.1.2 - name: Publish to GDAM - uses: aviorstudio/gdam-actions/publish@v0 + uses: aviorstudio/gdam-actions/publish@v0.1.2 with: version: ${{ steps.release.outputs.version }} tag: ${{ steps.release.outputs.tag }}