From 2d5ddc0a6ddccb4814396c7ab8512e01eaf34770 Mon Sep 17 00:00:00 2001 From: nicodes Date: Sat, 1 Aug 2026 12:03:05 -0600 Subject: [PATCH] Pin gdam-actions to v0.0.1 gdam-actions restarted its version line: the v0.1.x numbering predated it having a release process and left the two action collections here starting from different numbers for no reason, so those tags are deleted and the line restarts at v0.0.1. @v0.1.2 is a dead ref now, so this is a fix rather than an upgrade -- without it the next run of this workflow cannot resolve the action. v0.0.1 points at the same commit v0.1.2 did, so the content is identical and this still carries the authenticated "latest" lookup that stopped the intermittent 403s. 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 2874aee..9a003ca 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.1.2 + uses: aviorstudio/gdam-actions/install@v0.0.1 - name: Publish to GDAM - uses: aviorstudio/gdam-actions/publish@v0.1.2 + uses: aviorstudio/gdam-actions/publish@v0.0.1 with: version: ${{ steps.release.outputs.version }} tag: ${{ steps.release.outputs.tag }}