From 021978b8a25d0f30af28fdc609196ed67f2c1efa Mon Sep 17 00:00:00 2001 From: Claudio Wunder Date: Wed, 9 Sep 2026 13:29:08 +0200 Subject: [PATCH] ci: replace unsupported ?? operator with || in workflow expression GitHub Actions expression syntax does not support the nullish coalescing operator (??). Replace `inputs.version ?? ""` with `inputs.version || ''` to restore the update-links workflow. Also switch the YAML scalar to double-quoted so the inner single-quoted empty string is valid YAML. Fixes #1020 Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01LXvbysVPDnes541gBuD1ia --- .github/workflows/update-links.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-links.yml b/.github/workflows/update-links.yml index 3112891..d06d7d7 100644 --- a/.github/workflows/update-links.yml +++ b/.github/workflows/update-links.yml @@ -62,7 +62,7 @@ jobs: - name: Update Directory Cache run: node scripts/update-directory-cache.mjs "$VERSION_INPUT" && node --run format env: - VERSION_INPUT: '${{ inputs.version ?? "" }}' + VERSION_INPUT: "${{ inputs.version || '' }}" CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }} S3_ACCESS_KEY_ID: ${{ secrets.CF_ACCESS_KEY_ID }} S3_ACCESS_KEY_SECRET: ${{ secrets.CF_SECRET_ACCESS_KEY }}