From 14d8b723285ce0df8c2fa34daac33fad1038b706 Mon Sep 17 00:00:00 2001 From: madhur310 Date: Wed, 26 Aug 2026 13:18:45 -0700 Subject: [PATCH] chore: unpin download-release-vsix action to use @main Remove hardcoded SHA reference to allow automatic updates to the action. Background: - Action was pinned to SHA 03cb2583f in commit d8eed42fb (Aug 2026) - Pinning was done during initial development for stability - SHA is confirmed to be in main branch ancestry - Action has been stable for months Changes: - vscode-publish-release-vsix.yml: Use @main instead of @03cb2583f - openvsx-publish-release-vsix.yml: Use @main instead of @03cb2583f Benefits: - Workflows automatically get action updates/fixes - No need to manually update SHA after action changes - Consistent with other action references in the repo Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/openvsx-publish-release-vsix.yml | 2 +- .github/workflows/vscode-publish-release-vsix.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/openvsx-publish-release-vsix.yml b/.github/workflows/openvsx-publish-release-vsix.yml index b5dd09f8..6bb5c5fa 100644 --- a/.github/workflows/openvsx-publish-release-vsix.yml +++ b/.github/workflows/openvsx-publish-release-vsix.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Download release VSIXs id: release - uses: salesforcecli/github-workflows/.github/actions/vscode/download-release-vsix@03cb2583f2edf45cd7d2688f2a452ee29511229e + uses: salesforcecli/github-workflows/.github/actions/vscode/download-release-vsix@main with: release-tag: ${{ inputs.release-tag }} diff --git a/.github/workflows/vscode-publish-release-vsix.yml b/.github/workflows/vscode-publish-release-vsix.yml index 9fb051f9..e04c3cd2 100644 --- a/.github/workflows/vscode-publish-release-vsix.yml +++ b/.github/workflows/vscode-publish-release-vsix.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Download release VSIXs id: release - uses: salesforcecli/github-workflows/.github/actions/vscode/download-release-vsix@03cb2583f2edf45cd7d2688f2a452ee29511229e + uses: salesforcecli/github-workflows/.github/actions/vscode/download-release-vsix@main with: release-tag: ${{ inputs.release-tag }}