3939
4040 steps :
4141 - name : Checkout code at the new tag
42- uses : actions/checkout@v4
42+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4343 with :
4444 ref : ${{ github.event.release.tag_name }}
4545
6666
6767 echo "Downloading binary from: ${DOWNLOAD_URL}"
6868 curl -L --fail -o "${SOURCE_BINARY}" "${DOWNLOAD_URL}"
69-
69+
70+ chmod +x ${SOURCE_BINARY}
71+
7072 echo "Binary downloaded and prepared."
7173 ls -l
7274
@@ -101,7 +103,7 @@ jobs:
101103 echo "ARCHIVE_PATH=${ARCHIVE_NAME}" >> $GITHUB_OUTPUT
102104
103105 - name : Upload archive as workflow artifact
104- uses : actions/upload-artifact@v4
106+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
105107 with :
106108 name : ${{ steps.vars.outputs.archive_name }}
107109 path : ${{ steps.create_archive.outputs.ARCHIVE_PATH }}
@@ -115,10 +117,10 @@ jobs:
115117 contents : write
116118 steps :
117119 - name : Checkout code
118- uses : actions/checkout@v4
120+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
119121
120122 - name : Download all archives from workflow artifacts
121- uses : actions/download-artifact@v4
123+ uses : actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
122124 with :
123125 path : release-archives
124126
@@ -134,4 +136,4 @@ jobs:
134136 run : |
135137 gh release upload \
136138 ${{ github.event.release.tag_name }} \
137- release-archives/*/*
139+ release-archives/*/*
0 commit comments