@@ -92,14 +92,14 @@ jobs:
92
92
steps :
93
93
- name : Check out source code
94
94
if : ${{ github.event_name != 'pull_request_target' }}
95
- uses : actions/checkout@v2
95
+ uses : actions/checkout@v3
96
96
with :
97
97
fetch-depth : 0
98
98
persist-credentials : false
99
99
100
100
- name : Check out source code (pull request)
101
101
if : ${{ github.event_name == 'pull_request_target' }}
102
- uses : actions/checkout@v2
102
+ uses : actions/checkout@v3
103
103
with :
104
104
ref : ${{ github.event.pull_request.head.sha }}
105
105
fetch-depth : 0
@@ -111,7 +111,7 @@ jobs:
111
111
echo "${VERSION:1}" > version
112
112
113
113
- name : Upload version file
114
- uses : actions/upload-artifact@v2
114
+ uses : actions/upload-artifact@v3
115
115
with :
116
116
name : version
117
117
path : version
@@ -516,14 +516,14 @@ jobs:
516
516
517
517
- name : Check out source code
518
518
if : ${{ github.event_name != 'pull_request_target' }}
519
- uses : actions/checkout@v2
519
+ uses : actions/checkout@v3
520
520
with :
521
521
submodules : recursive
522
522
persist-credentials : false
523
523
524
524
- name : Check out source code (pull request)
525
525
if : ${{ github.event_name == 'pull_request_target' }}
526
- uses : actions/checkout@v2
526
+ uses : actions/checkout@v3
527
527
with :
528
528
ref : ${{ github.event.pull_request.head.sha }}
529
529
submodules : recursive
@@ -565,13 +565,13 @@ jobs:
565
565
${CT_NG} version
566
566
567
567
- name : Download version information
568
- uses : actions/download-artifact@v2
568
+ uses : actions/download-artifact@v3
569
569
with :
570
570
name : version
571
571
path : ${{ runner.temp }}
572
572
573
573
- name : Configure AWS Credentials
574
- uses : aws-actions/configure-aws-credentials@v1
574
+ uses : aws-actions/configure-aws-credentials@v1-node16
575
575
with :
576
576
aws-access-key-id : ${{ secrets.AWS_CACHE_SDK_ACCESS_KEY_ID }}
577
577
aws-secret-access-key : ${{ secrets.AWS_CACHE_SDK_SECRET_ACCESS_KEY }}
@@ -789,13 +789,13 @@ jobs:
789
789
790
790
- name : Upload toolchain build log
791
791
if : always()
792
- uses : actions/upload-artifact@v2
792
+ uses : actions/upload-artifact@v3
793
793
with :
794
794
name : log_${{ matrix.host.name }}_${{ matrix.target }}
795
795
path : ${{ matrix.target }}.log
796
796
797
797
- name : Upload toolchain build artifact
798
- uses : actions/upload-artifact@v2
798
+ uses : actions/upload-artifact@v3
799
799
with :
800
800
name : toolchain_${{ matrix.host.name }}_${{ matrix.target }}
801
801
path : |
@@ -852,21 +852,21 @@ jobs:
852
852
853
853
- name : Check out source code
854
854
if : ${{ github.event_name != 'pull_request_target' }}
855
- uses : actions/checkout@v2
855
+ uses : actions/checkout@v3
856
856
with :
857
857
submodules : recursive
858
858
persist-credentials : false
859
859
860
860
- name : Check out source code (pull request)
861
861
if : ${{ github.event_name == 'pull_request_target' }}
862
- uses : actions/checkout@v2
862
+ uses : actions/checkout@v3
863
863
with :
864
864
ref : ${{ github.event.pull_request.head.sha }}
865
865
submodules : recursive
866
866
persist-credentials : false
867
867
868
868
- name : Configure AWS Credentials
869
- uses : aws-actions/configure-aws-credentials@v1
869
+ uses : aws-actions/configure-aws-credentials@v1-node16
870
870
with :
871
871
aws-access-key-id : ${{ secrets.AWS_CACHE_SDK_ACCESS_KEY_ID }}
872
872
aws-secret-access-key : ${{ secrets.AWS_CACHE_SDK_SECRET_ACCESS_KEY }}
@@ -945,7 +945,7 @@ jobs:
945
945
946
946
- name : Upload toolchain build artifact
947
947
if : startsWith(matrix.host.name, 'linux-') # FIXME: Do for all
948
- uses : actions/upload-artifact@v2
948
+ uses : actions/upload-artifact@v3
949
949
with :
950
950
name : hosttools_${{ matrix.host.name }}
951
951
path : |
@@ -1007,13 +1007,13 @@ jobs:
1007
1007
1008
1008
- name : Check out source code
1009
1009
if : ${{ github.event_name != 'pull_request_target' }}
1010
- uses : actions/checkout@v2
1010
+ uses : actions/checkout@v3
1011
1011
with :
1012
1012
persist-credentials : false
1013
1013
1014
1014
- name : Check out source code (pull request)
1015
1015
if : ${{ github.event_name == 'pull_request_target' }}
1016
- uses : actions/checkout@v2
1016
+ uses : actions/checkout@v3
1017
1017
with :
1018
1018
ref : ${{ github.event.pull_request.head.sha }}
1019
1019
persist-credentials : false
@@ -1037,7 +1037,7 @@ jobs:
1037
1037
sha256sum ${ARCHIVE_FILE} > sha256.sum
1038
1038
1039
1039
- name : Upload CMake package build artifact
1040
- uses : actions/upload-artifact@v2
1040
+ uses : actions/upload-artifact@v3
1041
1041
with :
1042
1042
name : cmake_${{ matrix.host.name }}
1043
1043
path : |
@@ -1096,21 +1096,21 @@ jobs:
1096
1096
1097
1097
- name : Check out source code
1098
1098
if : ${{ github.event_name != 'pull_request_target' }}
1099
- uses : actions/checkout@v2
1099
+ uses : actions/checkout@v3
1100
1100
with :
1101
1101
path : repository
1102
1102
persist-credentials : false
1103
1103
1104
1104
- name : Check out source code (pull request)
1105
1105
if : ${{ github.event_name == 'pull_request_target' }}
1106
- uses : actions/checkout@v2
1106
+ uses : actions/checkout@v3
1107
1107
with :
1108
1108
ref : ${{ github.event.pull_request.head.sha }}
1109
1109
path : repository
1110
1110
persist-credentials : false
1111
1111
1112
1112
- name : Download artifacts
1113
- uses : actions/download-artifact@v2
1113
+ uses : actions/download-artifact@v3
1114
1114
with :
1115
1115
# NOTE: This downloads all build artifacts, including the toolchains and host tools for
1116
1116
# the irrelevant hosts, because the download-artifact action does not support
@@ -1223,7 +1223,7 @@ jobs:
1223
1223
sha256sum ${ARCHIVE_NAME}.${EXT} ${ARCHIVE_NAME}_minimal.${EXT} > sha256.sum
1224
1224
1225
1225
- name : Upload distribution bundle
1226
- uses : actions/upload-artifact@v2
1226
+ uses : actions/upload-artifact@v3
1227
1227
with :
1228
1228
name : ${{ env.BUNDLE_ARCHIVE_NAME }}
1229
1229
path : |
@@ -1256,7 +1256,7 @@ jobs:
1256
1256
1257
1257
steps :
1258
1258
- name : Set up Python
1259
- uses : actions/setup-python@v2
1259
+ uses : actions/setup-python@v4
1260
1260
with :
1261
1261
# Force Python 3.10 because the twister is not compatible with a Python
1262
1262
# version lower than 3.8 on Windows.
@@ -1340,7 +1340,7 @@ jobs:
1340
1340
echo "ARTIFACT_ROOT=${GITHUB_WORKSPACE}/artifacts" >> $GITHUB_ENV
1341
1341
1342
1342
- name : Download version information
1343
- uses : actions/download-artifact@v2
1343
+ uses : actions/download-artifact@v3
1344
1344
with :
1345
1345
name : version
1346
1346
path : artifacts
@@ -1359,7 +1359,7 @@ jobs:
1359
1359
echo "BUNDLE_DIR=${BUNDLE_DIR}" >> $GITHUB_ENV
1360
1360
1361
1361
- name : Download distribution bundle
1362
- uses : actions/download-artifact@v2
1362
+ uses : actions/download-artifact@v3
1363
1363
with :
1364
1364
name : ${{ env.BUNDLE_NAME }}
1365
1365
path : artifacts
@@ -1534,7 +1534,7 @@ jobs:
1534
1534
1535
1535
- name : Publish test results
1536
1536
if : always()
1537
- uses : actions/upload-artifact@v2
1537
+ uses : actions/upload-artifact@v3
1538
1538
with :
1539
1539
name : test_${{ matrix.testenv.name }}_${{ matrix.subset }}
1540
1540
if-no-files-found : ignore
0 commit comments