26
26
base-product-version : $${{ steps.set-product-version.outputs.base-product-version }}
27
27
prerelease-product-version : ${{ steps.set-product-version.outputs.prerelease-product-version }}
28
28
steps :
29
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
29
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30
30
- name : Set Product version
31
31
id : set-product-version
32
32
uses : hashicorp/actions-set-product-version@v2 # TSCCR: loading action configs: failed to query HEAD reference: failed to get advertised references: authorization failed
39
39
product-edition : ${{ steps.get-product-edition.outputs.product-edition }}
40
40
go-version : ${{ steps.get-go-version.outputs.go-version }}
41
41
steps :
42
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
42
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
43
43
- name : Determine Go version
44
44
id : get-go-version
45
45
# We use .go-version as our source of truth for current Go
48
48
echo "Building with Go $(cat .go-version)"
49
49
echo "go-version=$(cat .go-version)" >> "$GITHUB_OUTPUT"
50
50
- name : Set up Go
51
- uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
51
+ uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
52
52
with :
53
53
go-version : " ${{ steps.get-go-version.outputs.go-version }}"
54
54
cache : false
58
58
echo "go-build=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
59
59
echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
60
60
- name : Set up Go modules cache
61
- uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
61
+ uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
62
62
with :
63
63
path : |
64
64
${{ steps.go-cache-paths.outputs.go-build }}
86
86
runs-on : ${{ fromJSON(vars.BUILDER_LINUX) }}
87
87
steps :
88
88
- name : ' Checkout directory'
89
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
89
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
90
90
- run : |
91
91
echo "Product Version - ${{ needs.set-product-version.outputs.product-version }}"
92
92
echo "Product Prerelease - ${{ needs.set-product-version.outputs.prerelease-product-version }}"
@@ -100,15 +100,15 @@ jobs:
100
100
filepath : ${{ steps.generate-metadata-file.outputs.filepath }}
101
101
steps :
102
102
- name : ' Checkout directory'
103
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
103
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
104
104
- name : Generate metadata file
105
105
id : generate-metadata-file
106
106
uses : hashicorp/actions-generate-metadata@v1 # TSCCR: loading action configs: failed to query HEAD reference: failed to get advertised references: authorization failed
107
107
with :
108
108
repository : boundary
109
109
version : ${{ needs.set-product-version.outputs.product-version }}
110
110
product : ${{ env.PKG_NAME }}
111
- - uses : actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
111
+ - uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
112
112
with :
113
113
name : metadata.json
114
114
path : ${{ steps.generate-metadata-file.outputs.filepath }}
@@ -137,9 +137,9 @@ jobs:
137
137
GOPRIVATE : " github.com/hashicorp"
138
138
GO111MODULE : on
139
139
steps :
140
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
140
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
141
141
- name : Set up go
142
- uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
142
+ uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
143
143
with :
144
144
go-version : ${{ matrix.go }}
145
145
cache : false
@@ -149,7 +149,7 @@ jobs:
149
149
echo "go-build=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
150
150
echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
151
151
- name : Set up Go modules cache
152
- uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
152
+ uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
153
153
with :
154
154
path : |
155
155
${{ steps.go-cache-paths.outputs.go-build }}
@@ -163,7 +163,7 @@ jobs:
163
163
id : set-sha
164
164
run : echo "sha=$(head -n1 internal/ui/VERSION | cut -d ' ' -f1)" >> "$GITHUB_OUTPUT"
165
165
- name : Download UI artifact
166
- uses : dawidd6/action-download-artifact@bf251b5aa9c2f7eeb574a96ee720e24f801b7c11 # v6
166
+ uses : dawidd6/action-download-artifact@20319c5641d495c8a52e688b7dc5fada6c3a9fbc # v8
167
167
with :
168
168
workflow : build-admin-ui.yaml
169
169
commit : ${{ steps.set-sha.outputs.sha }}
@@ -205,11 +205,11 @@ jobs:
205
205
GO111MODULE : on
206
206
207
207
steps :
208
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
208
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
209
209
- name : Set up Git
210
210
run : git config --global url."https://${{ secrets.ELEVATED_GITHUB_TOKEN }}:@github.com".insteadOf "https://github.com"
211
211
- name : Set up Go
212
- uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
212
+ uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
213
213
with :
214
214
go-version : ${{ matrix.go }}
215
215
cache : false
@@ -219,7 +219,7 @@ jobs:
219
219
echo "go-build=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
220
220
echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
221
221
- name : Set up Go modules cache
222
- uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
222
+ uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
223
223
with :
224
224
path : |
225
225
${{ steps.go-cache-paths.outputs.go-build }}
@@ -231,7 +231,7 @@ jobs:
231
231
id : set-sha
232
232
run : echo "sha=$(head -n1 internal/ui/VERSION | cut -d ' ' -f1)" >> "$GITHUB_OUTPUT"
233
233
- name : Download UI artifact
234
- uses : dawidd6/action-download-artifact@bf251b5aa9c2f7eeb574a96ee720e24f801b7c11 # v6
234
+ uses : dawidd6/action-download-artifact@20319c5641d495c8a52e688b7dc5fada6c3a9fbc # v8
235
235
with :
236
236
workflow : build-admin-ui.yaml
237
237
commit : ${{ steps.set-sha.outputs.sha }}
@@ -279,12 +279,12 @@ jobs:
279
279
echo "RPM_PACKAGE=$(basename out/*.rpm)" >> "$GITHUB_ENV"
280
280
echo "DEB_PACKAGE=$(basename out/*.deb)" >> "$GITHUB_ENV"
281
281
- name : Upload RPM package
282
- uses : actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
282
+ uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
283
283
with :
284
284
name : ${{ env.RPM_PACKAGE }}
285
285
path : out/${{ env.RPM_PACKAGE }}
286
286
- name : Upload DEB package
287
- uses : actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
287
+ uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
288
288
with :
289
289
name : ${{ env.DEB_PACKAGE }}
290
290
path : out/${{ env.DEB_PACKAGE }}
@@ -307,9 +307,9 @@ jobs:
307
307
GO111MODULE : on
308
308
309
309
steps :
310
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
310
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
311
311
- name : Set up go
312
- uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
312
+ uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
313
313
with :
314
314
go-version : ${{ matrix.go }}
315
315
cache : false
@@ -319,7 +319,7 @@ jobs:
319
319
echo "go-build=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
320
320
echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
321
321
- name : Set up Go modules cache
322
- uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
322
+ uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
323
323
with :
324
324
path : |
325
325
${{ steps.go-cache-paths.outputs.go-build }}
@@ -331,7 +331,7 @@ jobs:
331
331
id : set-sha
332
332
run : echo "sha=$(head -n1 internal/ui/VERSION | cut -d ' ' -f1)" >> "$GITHUB_OUTPUT"
333
333
- name : Download UI artifact
334
- uses : dawidd6/action-download-artifact@bf251b5aa9c2f7eeb574a96ee720e24f801b7c11 # v6
334
+ uses : dawidd6/action-download-artifact@20319c5641d495c8a52e688b7dc5fada6c3a9fbc # v8
335
335
with :
336
336
workflow : build-admin-ui.yaml
337
337
commit : ${{ steps.set-sha.outputs.sha }}
@@ -371,7 +371,7 @@ jobs:
371
371
version : ${{ needs.set-product-version.outputs.product-version }}
372
372
minor-version : ${{ needs.product-metadata.outputs.product-minor-version }}
373
373
steps :
374
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
374
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
375
375
- name : Docker Build (Action)
376
376
uses : hashicorp/actions-docker-build@v2 # TSCCR: loading action configs: failed to query HEAD reference: failed to get advertised references: authorization failed
377
377
with :
0 commit comments