From 287e038eefe6b5c8bc42fcda09c4ab0c31e47396 Mon Sep 17 00:00:00 2001 From: nicodes Date: Sat, 1 Aug 2026 12:03:26 -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 5767652..5fd3ed3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -87,10 +87,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 }}