|
50 | 50 | with: |
51 | 51 | go-version-file: 'go.mod' |
52 | 52 | - name: Install GoReleaser |
53 | | - uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a |
| 53 | + uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0 |
54 | 54 | with: |
55 | | - version: "~1.17.1" |
| 55 | + # The version is pinned not only for security purposes, but also to avoid breaking |
| 56 | + # our scripts, which rely on the specific file names generated by GoReleaser. |
| 57 | + version: v2.13.1 |
56 | 58 | install-only: true |
57 | 59 | - name: Build release binaries |
58 | 60 | env: |
@@ -103,9 +105,11 @@ jobs: |
103 | 105 | security set-key-partition-list -S "apple-tool:,apple:,codesign:" -s -k "$keychain_password" "$keychain" |
104 | 106 | rm "$RUNNER_TEMP/cert.p12" |
105 | 107 | - name: Install GoReleaser |
106 | | - uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a |
| 108 | + uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0 |
107 | 109 | with: |
108 | | - version: "~1.17.1" |
| 110 | + # The version is pinned not only for security purposes, but also to avoid breaking |
| 111 | + # our scripts, which rely on the specific file names generated by GoReleaser. |
| 112 | + version: v2.13.1 |
109 | 113 | install-only: true |
110 | 114 | - name: Build release binaries |
111 | 115 | env: |
@@ -157,9 +161,11 @@ jobs: |
157 | 161 | with: |
158 | 162 | go-version-file: 'go.mod' |
159 | 163 | - name: Install GoReleaser |
160 | | - uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a |
| 164 | + uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0 |
161 | 165 | with: |
162 | | - version: "~1.17.1" |
| 166 | + # The version is pinned not only for security purposes, but also to avoid breaking |
| 167 | + # our scripts, which rely on the specific file names generated by GoReleaser. |
| 168 | + version: v2.13.1 |
163 | 169 | install-only: true |
164 | 170 | - name: Install Azure Code Signing Client |
165 | 171 | shell: pwsh |
@@ -207,15 +213,15 @@ jobs: |
207 | 213 | MSI_VERSION="$(cut -d_ -f2 <<<"$MSI_NAME" | cut -d- -f1)" |
208 | 214 | case "$MSI_NAME" in |
209 | 215 | *_386 ) |
210 | | - source_dir="$PWD/dist/windows_windows_386" |
| 216 | + source_dir="$PWD/dist/windows_windows_386_sse2" |
211 | 217 | platform="x86" |
212 | 218 | ;; |
213 | 219 | *_amd64 ) |
214 | 220 | source_dir="$PWD/dist/windows_windows_amd64_v1" |
215 | 221 | platform="x64" |
216 | 222 | ;; |
217 | 223 | *_arm64 ) |
218 | | - source_dir="$PWD/dist/windows_windows_arm64" |
| 224 | + source_dir="$PWD/dist/windows_windows_arm64_v8.0" |
219 | 225 | platform="arm64" |
220 | 226 | ;; |
221 | 227 | * ) |
|
0 commit comments