@@ -40,14 +40,14 @@ jobs:
40
40
echo "yarn=$(yarn cache dir)" >> $GITHUB_OUTPUT
41
41
mkdir -p /usr/local/share/.cache/go
42
42
echo "go=/usr/local/share/.cache/go" >> $GITHUB_OUTPUT
43
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
43
+ - uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
44
44
with :
45
45
path : ${{ steps.global-cache-dir-path.outputs.yarn }}
46
46
key : yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-integration
47
47
restore-keys : |
48
48
yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-
49
49
yarn-${{ runner.os }}-
50
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
50
+ - uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
51
51
with :
52
52
path : ${{ steps.global-cache-dir-path.outputs.go }}
53
53
key : go-${{ runner.os }}-${{ hashFiles('**/go.sum') }}-integration
@@ -68,13 +68,13 @@ jobs:
68
68
SENTRY_DSN : ${{ secrets.SENTRY_DSN }}
69
69
GOCACHE : ${{ steps.global-cache-dir-path.outputs.go }}
70
70
- name : Upload dist
71
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
71
+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
72
72
if : ${{ !inputs.skip_setup }}
73
73
with :
74
74
name : dist
75
75
path : dist
76
76
- name : Upload edge-provider bindings
77
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
77
+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
78
78
if : ${{ !inputs.skip_setup }}
79
79
with :
80
80
name : edge-provider-bindings
@@ -116,21 +116,21 @@ jobs:
116
116
mkdir -p /usr/local/share/.cache/go
117
117
echo "go=/usr/local/share/.cache/go" >> $GITHUB_OUTPUT
118
118
# only restore as an individual cache as per matrix explodes our cache usage
119
- - uses : actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
119
+ - uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
120
120
with :
121
121
path : ${{ steps.global-cache-dir-path.outputs.yarn }}
122
122
key : yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-integration
123
123
restore-keys : |
124
124
yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-
125
125
yarn-${{ runner.os }}-
126
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
126
+ - uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
127
127
with :
128
128
path : ${{ steps.global-cache-dir-path.outputs.terraform }}
129
129
# put matrix before integration to not restore caches from other sibling matrix jobs
130
130
key : terraform-${{ runner.os }}-${{ matrix.terraform }}-matrix-integration-${{ matrix.target }}
131
131
restore-keys : |
132
132
terraform-${{ runner.os }}-${{ matrix.terraform }}-
133
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
133
+ - uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
134
134
with :
135
135
path : ${{ steps.global-cache-dir-path.outputs.go }}
136
136
# put matrix before integration to not restore caches from other sibling matrix jobs
@@ -140,12 +140,12 @@ jobs:
140
140
go-${{ runner.os }}-${{ hashFiles('**/go.sum') }}
141
141
go-${{ runner.os }}-
142
142
- name : Download dist
143
- uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
143
+ uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
144
144
with :
145
145
name : dist
146
146
path : dist
147
147
- name : Download edge-provider bindings
148
- uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
148
+ uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
149
149
with :
150
150
name : edge-provider-bindings
151
151
path : test/edge-provider-bindings
@@ -188,21 +188,21 @@ jobs:
188
188
mkdir -p /usr/local/share/.cache/go
189
189
echo "go=/usr/local/share/.cache/go" >> $GITHUB_OUTPUT
190
190
# only restore as an individual cache as per matrix explodes our cache usage
191
- - uses : actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
191
+ - uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
192
192
with :
193
193
path : ${{ steps.global-cache-dir-path.outputs.yarn }}
194
194
key : yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-integration
195
195
restore-keys : |
196
196
yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-
197
197
yarn-${{ runner.os }}-
198
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
198
+ - uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
199
199
with :
200
200
path : ${{ steps.global-cache-dir-path.outputs.terraform }}
201
201
# put matrix before integration to not restore caches from other sibling matrix jobs
202
202
key : terraform-${{ runner.os }}-${{ matrix.terraform }}-matrix-integration-${{ matrix.target }}
203
203
restore-keys : |
204
204
terraform-${{ runner.os }}-${{ matrix.terraform }}-
205
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
205
+ - uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
206
206
with :
207
207
path : ${{ steps.global-cache-dir-path.outputs.go }}
208
208
# put matrix before integration to not restore caches from other sibling matrix jobs
@@ -219,17 +219,17 @@ jobs:
219
219
- name : Install pipenv
220
220
run : pip install pipenv
221
221
- name : Install Go
222
- uses : actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3 .0
222
+ uses : actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4 .0
223
223
with :
224
224
go-version : 1.18.x
225
225
cache : false # This is disabled because we don't have a go.sum file and setup-go expects it to use caching. Thus, caching is always broken anyways
226
226
- name : Download dist
227
- uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
227
+ uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
228
228
with :
229
229
name : dist
230
230
path : dist
231
231
- name : Download edge-provider bindings
232
- uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
232
+ uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
233
233
with :
234
234
name : edge-provider-bindings
235
235
path : test/edge-provider-bindings
0 commit comments