@@ -103,11 +103,10 @@ jobs:
103
103
--action lambda:GetLayerVersion
104
104
- name : upload layer arn artifact
105
105
if : ${{ success() }}
106
- uses : actions/upload-artifact@v4
106
+ uses : actions/upload-artifact@v3
107
107
with :
108
108
name : ${{ env.LAYER_NAME }}
109
109
path : ${{ env.LAYER_NAME }}/${{ matrix.aws_region }}
110
- overwrite : true
111
110
- name : clean s3
112
111
if : always()
113
112
run : |
@@ -127,7 +126,7 @@ jobs:
127
126
run : |
128
127
echo LAYER_KIND=$(echo "${{ github.event.inputs.layer_name_keyword }}" | cut -d - -f 3) | tee --append $GITHUB_ENV
129
128
- name : download layerARNs
130
- uses : actions/download-artifact@v4
129
+ uses : actions/download-artifact@v3
131
130
with :
132
131
name : ${{ env.LAYER_NAME }}
133
132
path : ${{ env.LAYER_NAME }}
@@ -171,11 +170,10 @@ jobs:
171
170
terraform fmt layer.tf
172
171
cat layer.tf
173
172
- name : upload layer tf file
174
- uses : actions/upload-artifact@v4
173
+ uses : actions/upload-artifact@v3
175
174
with :
176
175
name : layer_${{ matrix.architecture }}.tf
177
176
path : layer.tf
178
- overwrite : true
179
177
smoke-test :
180
178
name : Smoke Test - (${{ matrix.aws_region }} - ${{ github.event.inputs.layer_name_keyword }} - ${{ matrix.architecture }})
181
179
needs : generate-note
@@ -277,7 +275,7 @@ jobs:
277
275
go-version : ' ~1.21.10'
278
276
check-latest : true
279
277
- name : download layer tf file
280
- uses : actions/download-artifact@v4
278
+ uses : actions/download-artifact@v3
281
279
with :
282
280
name : layer_${{ matrix.architecture }}.tf
283
281
- name : Get terraform directory
0 commit comments