From 98e47ca21c7f3fa0118dd9b238560840a9f4f861 Mon Sep 17 00:00:00 2001 From: Hiroshi Miura Date: Tue, 29 Jul 2025 15:20:39 +0900 Subject: [PATCH] chore: Pin `svenstaro/upload-release-action` to a specific commit (`v2.11.2`) in workflow file. Signed-off-by: Hiroshi Miura --- .github/workflows/upload-release-artifacts.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/upload-release-artifacts.yml b/.github/workflows/upload-release-artifacts.yml index 7b7399b..fdfe5ad 100644 --- a/.github/workflows/upload-release-artifacts.yml +++ b/.github/workflows/upload-release-artifacts.yml @@ -45,7 +45,7 @@ jobs: ${{ matrix.system.os == 'windows-latest' && 'Remove-Item venv -Recurse -Force' || 'rm -rf venv' }} - name: Upload to Release - uses: svenstaro/upload-release-action@v2 + uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 #v2.11.2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: dist/${{ matrix.system.output_file }} @@ -54,7 +54,7 @@ jobs: overwrite: true if: matrix.system.primary_artifact!='' && startsWith(github.ref, 'refs/tags/v') - name: Upload to Release for all architectures - uses: svenstaro/upload-release-action@v2 + uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 #v2.11.2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: dist/${{ matrix.system.output_file }} @@ -63,7 +63,7 @@ jobs: overwrite: true if: matrix.system.secondary_artifact!='' && startsWith(github.ref, 'refs/tags/v') - name: Update continuous build - uses: svenstaro/upload-release-action@v2 + uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 #v2.11.2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} overwrite: true @@ -73,7 +73,7 @@ jobs: asset_name: ${{ matrix.system.primary_artifact }} if: matrix.system.primary_artifact!='' && startsWith(github.ref, 'refs/tags/v') - name: Update continuous build for all architectures - uses: svenstaro/upload-release-action@v2 + uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 #v2.11.2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} overwrite: true